Skip to content

Commit d861e89

Browse files
committed
Fix zizmor findings
1 parent a335610 commit d861e89

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
steps:
4343
- uses: actions/[email protected]
4444
with:
45+
persist-credentials: false
4546
fetch-depth: 0
4647
filter: "tree:0"
4748
- uses: DeterminateSystems/nix-installer-action@main
@@ -61,6 +62,7 @@ jobs:
6162
steps:
6263
- uses: actions/[email protected]
6364
with:
65+
persist-credentials: false
6466
fetch-depth: 0
6567
filter: "tree:0"
6668
- uses: DeterminateSystems/nix-installer-action@main
@@ -95,6 +97,7 @@ jobs:
9597
steps:
9698
- uses: actions/[email protected]
9799
with:
100+
persist-credentials: false
98101
fetch-depth: 0
99102
filter: "tree:0"
100103
- uses: DeterminateSystems/nix-installer-action@main

.github/workflows/packaging.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
build_type: [RelWithDebInfo, MinSizeRel]
1616
steps:
1717
- uses: actions/checkout@v4
18+
with:
19+
persist-credentials: false
1820

1921
- name: Set up QEMU
2022
uses: docker/setup-qemu-action@v3
@@ -76,7 +78,7 @@ jobs:
7678
run: |
7779
cat ${{ github.workspace }}/.github/workflows/packaging/readme.template.txt >> ${{ github.workspace }}/zipfile/readme.txt
7880
cp ${{ github.workspace }}/.github/workflows/packaging/install-greengrass-lite.sh ${{ github.workspace }}/zipfile/
79-
sed -i 's|{{ VERSION_LINK }}|${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|g' ${{ github.workspace }}/zipfile/readme.txt
81+
sed -i 's|{{ VERSION_LINK }}|${ GITHUB_SERVER_URL }/${{ github.repository }}/commit/${{ github.sha }}|g' ${{ github.workspace }}/zipfile/readme.txt
8082
sed -i 's|{{ UBUNTU_VERSION }}|24.04|g' ${{ github.workspace }}/zipfile/install-greengrass-lite.sh
8183
cat ${{ github.workspace }}/LICENSE >> ${{ github.workspace }}/zipfile/readme.txt
8284
@@ -99,6 +101,7 @@ jobs:
99101
if: matrix.build_type == 'MinSizeRel' && matrix.architecture == ''
100102
uses: actions/upload-artifact@v4
101103
with:
104+
persist-credentials: false
102105
name: aws-greengrass-lite-ubuntu-${{ matrix.architecture || 'x86-64'}}
103106
path: |
104107
${{ github.workspace }}/zipfile/*

.github/workflows/static-packaging.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
build_type: [RelWithDebInfo, MinSizeRel]
1717
steps:
1818
- uses: actions/checkout@v4
19+
with:
20+
persist-credentials: false
1921

2022
- name: Set up QEMU
2123
uses: docker/setup-qemu-action@v3
@@ -63,7 +65,7 @@ jobs:
6365
run: |
6466
cat ${{ github.workspace }}/.github/workflows/static-packaging/readme.template.txt >> ${{ github.workspace }}/zipfile/readme.txt
6567
cp ${{ github.workspace }}/.github/workflows/packaging/install-greengrass-lite.sh ${{ github.workspace }}/zipfile/
66-
sed -i 's|{{ VERSION_LINK }}|${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|g' ${{ github.workspace }}/zipfile/readme.txt
68+
sed -i 's|{{ VERSION_LINK }}|${ GITHUB_SERVER_URL }/${{ github.repository }}/commit/${{ github.sha }}|g' ${{ github.workspace }}/zipfile/readme.txt
6769
sed -i 's|{{ UBUNTU_VERSION }}|22.04|g' ${{ github.workspace }}/zipfile/install-greengrass-lite.sh
6870
cat ${{ github.workspace }}/LICENSE >> ${{ github.workspace }}/zipfile/readme.txt
6971
- name: md5sums

0 commit comments

Comments
 (0)