Skip to content

Commit

Permalink
Update docker/build-push-action action to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 17, 2024
1 parent 6e5b288 commit a044c4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build stable
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: tobix/wine:stable
Expand All @@ -42,7 +42,7 @@ jobs:
cache-to: type=local,dest=/tmp/buildx-cache,mode=max

- name: Build devel
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: tobix/wine:devel
Expand All @@ -52,7 +52,7 @@ jobs:
cache-from: type=local,src=/tmp/buildx-cache

- name: Build staging
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: tobix/wine:staging
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build stable
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-args: |
WINE_FLAVOUR=stable
cache-to: type=local,dest=/tmp/buildx-cache,mode=max

- name: Build devel
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-args: |
WINE_FLAVOUR=devel
cache-from: type=local,src=/tmp/buildx-cache

- name: Build staging
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-args: |
WINE_FLAVOUR=staging
Expand Down

0 comments on commit a044c4b

Please sign in to comment.