Skip to content

Commit 8238d0e

Browse files
committed
Use docker/build-push-action@v5
1 parent 29b20c2 commit 8238d0e

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
@@ -35,7 +35,7 @@ runs:
3535
uses: ./.github/actions/get-idris-sha
3636

3737
- name: Build Base (versioned)
38-
uses: docker/build-push-action@v4.1.1
38+
uses: docker/build-push-action@v5
3939
if: ${{ inputs.idris-version != 'latest' }}
4040
with:
4141
context: .
@@ -53,7 +53,7 @@ runs:
5353
cache-to: type=gha,mode=max,scope=build-base-${{ inputs.idris-version }}
5454

5555
- name: Build Base (latest)
56-
uses: docker/build-push-action@v4.1.1
56+
uses: docker/build-push-action@v5
5757
if: ${{ inputs.idris-version == 'latest' }}
5858
with:
5959
context: .

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

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

4444
- name: Build Devcontainer (versioned)
4545
if: ${{ inputs.idris-lsp-version != 'latest' }}
46-
uses: docker/build-push-action@v4.1.1
46+
uses: docker/build-push-action@v5
4747
with:
4848
context: .
4949
file: devcontainer.Dockerfile
@@ -61,7 +61,7 @@ runs:
6161

6262
- name: Build Devcontainer (latest)
6363
if: ${{ inputs.idris-lsp-version == 'latest' }}
64-
uses: docker/build-push-action@v4.1.1
64+
uses: docker/build-push-action@v5
6565
with:
6666
context: .
6767
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
@@ -144,7 +144,7 @@ jobs:
144144
run: docker image ls
145145

146146
- name: Build ${{ matrix.dockerfile}}
147-
uses: docker/build-push-action@v4.1.1
147+
uses: docker/build-push-action@v5
148148
with:
149149
context: .
150150
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@v4.1.1
90+
uses: docker/build-push-action@v5
9191
with:
9292
context: .
9393
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)