Skip to content

Commit 641c208

Browse files
committed
ci: fix actionlint findings
1 parent 9d51980 commit 641c208

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish_docker_images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,6 @@ jobs:
160160
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
161161
- name: Inspect image
162162
run: |
163-
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${STEPS_META_OUTPUTS_VERSION}
163+
docker buildx imagetools inspect "${{ env.REGISTRY_IMAGE }}:${STEPS_META_OUTPUTS_VERSION}"
164164
env:
165165
STEPS_META_OUTPUTS_VERSION: ${{ steps.meta.outputs.version }}

.github/workflows/publish_release_packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424
- name: Extract asset version
25-
run: echo "ASSET_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
25+
run: echo "ASSET_VERSION=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV"
2626
- uses: ./.github/actions/cargo-build-macos-binary
2727
with:
2828
target: ${{ matrix.target }}
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4343
- name: Extract asset version
44-
run: echo "ASSET_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
44+
run: echo "ASSET_VERSION=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV"
4545
- uses: ./.github/actions/cross-build-binary
4646
with:
4747
target: ${{ matrix.target }}

0 commit comments

Comments
 (0)