Skip to content
This repository has been archived by the owner on Feb 2, 2025. It is now read-only.

build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 #71

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-test-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
- uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 #v3.8.0

- id: package-versions
run: echo "data=$(cat package-versions.json)" >> $GITHUB_OUTPUT

Check warning on line 23 in .github/workflows/build-test-image.yml

View workflow job for this annotation

GitHub Actions / Actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:45: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/build-test-image.yml:23:9: shellcheck reported issue in this script: SC2086:info:1:45: Double quote to prevent globbing and word splitting [shellcheck]

- id: docker_build
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc #v6.11.0
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d #v6.12.0
with:
context: .
push: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
- uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 #v3.8.0

- id: package-versions
run: echo "data=$(cat package-versions.json)" >> $GITHUB_OUTPUT

Check warning on line 67 in .github/workflows/publish-release.yml

View workflow job for this annotation

GitHub Actions / Actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:45: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/publish-release.yml:67:9: shellcheck reported issue in this script: SC2086:info:1:45: Double quote to prevent globbing and word splitting [shellcheck]

- id: docker_build
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc #v6.11.0
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d #v6.12.0
with:
context: .
push: true
Expand Down Expand Up @@ -100,5 +100,5 @@

- name: Image digest
run: echo "${DIGEST}"
with:

Check failure on line 103 in .github/workflows/publish-release.yml

View workflow job for this annotation

GitHub Actions / Actionlint

[actionlint] reported by reviewdog 🐶 this step is for running shell command since it contains at least one of "run", "shell" keys, but also contains "with" key which is used for running action [syntax-check] Raw Output: e:.github/workflows/publish-release.yml:103:9: this step is for running shell command since it contains at least one of "run", "shell" keys, but also contains "with" key which is used for running action [syntax-check]
DIGEST: ${{ steps.docker_build.outputs.digest }}
Loading