Skip to content

Commit

Permalink
Upgrade actions versions
Browse files Browse the repository at this point in the history
Fixes bake-action incompatibility with newer buildx versions
  • Loading branch information
ianpittwood authored and lucasrod16 committed Jan 30, 2025
1 parent fe05240 commit e818804
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/bake-test-push/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ runs:
# Build, test, and push image
- name: Build
id: build
uses: docker/bake-action@v4
uses: docker/bake-action@v5
with:
targets: "${{ inputs.target }}"
push: false
Expand Down Expand Up @@ -154,7 +154,7 @@ runs:
category: "${{ inputs.target }}-snyk-vulnerabilities"

- name: Push - ${{ inputs.push-image }}
uses: docker/bake-action@v4
uses: docker/bake-action@v5
with:
targets: "${{ inputs.target }}"
push: ${{ inputs.push-image }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: cleanup-dockerhub
steps:
- name: Check Out Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Script
run: ./tools/dockerhub_clean.py
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v4

- name: Run Hadolint
uses: hadolint/hadolint-action@v3.0.0
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: ${{ matrix.config.product }}/Dockerfile.${{ matrix.config.os }}
config: ./hadolint.yaml
2 changes: 1 addition & 1 deletion .github/workflows/update-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v3

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3.1.2
uses: peter-evans/dockerhub-description@v4.0.0
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
Expand Down

0 comments on commit e818804

Please sign in to comment.