Skip to content

Commit

Permalink
Merge pull request #85 from dockhippie/renovate/major-build-tools
Browse files Browse the repository at this point in the history
ci(tools): update build tools (major)
  • Loading branch information
tboerger committed Sep 13, 2023
2 parents 3a8e590 + 49f6f45 commit d311074
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
images: |
Expand All @@ -40,23 +40,23 @@ jobs:
- name: Setup QEMU
id: qemu
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Setup Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Hub login
id: login1
uses: docker/login-action@v2
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Quay login
id: login2
uses: docker/login-action@v2
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: quay.io
Expand All @@ -65,7 +65,7 @@ jobs:

- name: Ghcr login
id: login3
uses: docker/login-action@v2
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Build amd64
id: amd64
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
context: latest/
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Build arm64
id: arm64
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
context: latest/
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Build arm
id: arm
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
context: latest/
Expand Down

0 comments on commit d311074

Please sign in to comment.