Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update docker actions
  • Loading branch information
mattrunyon committed Sep 10, 2025
commit 5eda63cd5c6ac85894366e782563ce8ddc1523d9
6 changes: 3 additions & 3 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v3.3.0
uses: docker/metadata-action@v5.8.0
with:
images: ghcr.io/${{ github.repository_owner }}/examples
labels: |
Expand All @@ -32,14 +32,14 @@ jobs:

- name: Login to ghcr.io
if: github.event_name != 'pull_request'
uses: docker/login-action@v1.9.0
uses: docker/login-action@v3.5.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker build
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v6.18.0
with:
context: ./docker/
tags: ${{ steps.docker_meta.outputs.tags }}
Expand Down