Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

- name: Set version metadata
id: version
run: |

Check warning on line 32 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:9:37: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:32:9: shellcheck reported issue in this script: SC2086:info:9:37: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:8:53: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:32:9: shellcheck reported issue in this script: SC2086:info:8:53: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:6:71: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:32:9: shellcheck reported issue in this script: SC2086:info:6:71: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:65: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:32:9: shellcheck reported issue in this script: SC2086:info:5:65: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:3:48: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:32:9: shellcheck reported issue in this script: SC2086:info:3:48: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:58: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:32:9: shellcheck reported issue in this script: SC2086:info:2:58: Double quote to prevent globbing and word splitting [shellcheck]
if [ "${{ github.event_name }}" = "release" ]; then
echo "version=${{ github.event.release.tag_name }}" >> $GITHUB_OUTPUT
echo "version_short=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -67,7 +67,7 @@

- name: Build and push distroless image
id: build-distroless
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7
with:
context: .
target: release
Expand All @@ -93,7 +93,7 @@

- name: Build and push alpine image
id: build-alpine
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7
with:
context: .
target: alpine
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semrel-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ jobs:

- name: Build and push distroless image
id: build-distroless
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7
with:
context: .
target: release
Expand All @@ -296,7 +296,7 @@ jobs:

- name: Build and push alpine image
id: build-alpine
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7
with:
context: .
target: alpine
Expand Down
Loading