Skip to content

Commit e818804

Browse files
ianpittwoodlucasrod16
authored andcommitted
Upgrade actions versions
Fixes bake-action incompatibility with newer buildx versions
1 parent fe05240 commit e818804

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/actions/bake-test-push/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ runs:
119119
# Build, test, and push image
120120
- name: Build
121121
id: build
122-
uses: docker/bake-action@v4
122+
uses: docker/bake-action@v5
123123
with:
124124
targets: "${{ inputs.target }}"
125125
push: false
@@ -154,7 +154,7 @@ runs:
154154
category: "${{ inputs.target }}-snyk-vulnerabilities"
155155

156156
- name: Push - ${{ inputs.push-image }}
157-
uses: docker/bake-action@v4
157+
uses: docker/bake-action@v5
158158
with:
159159
targets: "${{ inputs.target }}"
160160
push: ${{ inputs.push-image }}

.github/workflows/clean-registry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: cleanup-dockerhub
1515
steps:
1616
- name: Check Out Repo
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Run Script
2020
run: ./tools/dockerhub_clean.py

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Run Hadolint
40-
uses: hadolint/hadolint-action@v3.0.0
40+
uses: hadolint/hadolint-action@v3.1.0
4141
with:
4242
dockerfile: ${{ matrix.config.product }}/Dockerfile.${{ matrix.config.os }}
4343
config: ./hadolint.yaml

.github/workflows/update-readme.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v3
3333

3434
- name: Docker Hub Description
35-
uses: peter-evans/dockerhub-description@v3.1.2
35+
uses: peter-evans/dockerhub-description@v4.0.0
3636
with:
3737
username: ${{ secrets.DOCKER_HUB_USERNAME }}
3838
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)