Skip to content

Commit

Permalink
update: github/workflows uses:
Browse files Browse the repository at this point in the history
  • Loading branch information
chr33s committed Dec 7, 2023
1 parent 77cf49c commit 0dd255f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: docker/login-action@v2
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v4
- uses: docker/metadata-action@v5
id: meta
with:
images: |
Expand All @@ -48,8 +48,8 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
context: .
load: true
Expand All @@ -61,7 +61,7 @@ jobs:
shell: bash
- run: docker stop ${{ steps.docker-run.outputs.stdout }}
- run: docker rmi ${{ env.TEST_TAG }}
- uses: docker/build-push-action@v4
- uses: docker/build-push-action@v5
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit 0dd255f

Please sign in to comment.