Skip to content

Commit

Permalink
ci: bump container.yml action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Jan 29, 2024
1 parent 4493907 commit 2aab272
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
fi || true
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
Expand All @@ -69,17 +69,17 @@ jobs:
prefix=
suffix=-${{ env.TAG_SUFFIX }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: ci/docker
push: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit 2aab272

Please sign in to comment.