Skip to content

Commit 9db72e7

Browse files
Update docker/build-push-action action to v6
1 parent fc95fff commit 9db72e7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/actions/build-base-img/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
shell: bash
4848

4949
- name: Build Base (versioned)
50-
uses: docker/build-push-action@v5
50+
uses: docker/build-push-action@v6
5151
if: ${{ inputs.idris-version != 'latest' }}
5252
with:
5353
context: .
@@ -68,7 +68,7 @@ runs:
6868
cache-to: ${{ steps.calculate-cache-to.outputs.cache-to }}
6969

7070
- name: Build Base (latest)
71-
uses: docker/build-push-action@v5
71+
uses: docker/build-push-action@v6
7272
if: ${{ inputs.idris-version == 'latest' }}
7373
with:
7474
context: .

.github/actions/build-devcontainer-img/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555

5656
- name: Build Devcontainer (versioned)
5757
if: ${{ inputs.idris-lsp-version != 'latest' }}
58-
uses: docker/build-push-action@v5
58+
uses: docker/build-push-action@v6
5959
with:
6060
context: .
6161
file: devcontainer.Dockerfile
@@ -75,7 +75,7 @@ runs:
7575

7676
- name: Build Devcontainer (latest)
7777
if: ${{ inputs.idris-lsp-version == 'latest' }}
78-
uses: docker/build-push-action@v5
78+
uses: docker/build-push-action@v6
7979
with:
8080
context: .
8181
file: devcontainer-sha.Dockerfile

.github/workflows/version-base-build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
run: docker image ls
146146

147147
- name: Build ${{ matrix.dockerfile}}
148-
uses: docker/build-push-action@v5
148+
uses: docker/build-push-action@v6
149149
with:
150150
context: .
151151
file: ${{ matrix.dockerfile }}.Dockerfile

.github/workflows/version-base-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
images: ${{ github.repository }}/${{ matrix.dockerfile }}
8888

8989
- name: Build ${{ matrix.dockerfile}}
90-
uses: docker/build-push-action@v5
90+
uses: docker/build-push-action@v6
9191
with:
9292
context: .
9393
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)