Skip to content

Commit

Permalink
ci(tools): update build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 12, 2023
1 parent 7265b3f commit 7578556
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,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 @@ -79,23 +79,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 @@ -104,7 +104,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 @@ -113,7 +113,7 @@ jobs:

- name: Build image
id: publish
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand All @@ -135,7 +135,7 @@ jobs:

- name: Hub tags
id: hubTags
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
images: webhippie/templater
Expand All @@ -158,7 +158,7 @@ jobs:

- name: Quay tags
id: quayTags
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
images: quay.io/webhippie/templater
Expand All @@ -181,7 +181,7 @@ jobs:

- name: Ghcr tags
id: ghcrTags
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
images: ghcr.io/webhippie/templater
Expand Down

0 comments on commit 7578556

Please sign in to comment.