Skip to content

Commit 6d0264e

Browse files
deps(actions): pin actions/download-artifact and actions/upload-artifact (#2332)
* deps(actions): pin actions/download-artifact to v3.0.2 * deps(actions): upgrade and pin actions/upload-artifact to v3.1.3 --------- Co-authored-by: Julio <[email protected]>
1 parent d54e663 commit 6d0264e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/main.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
- run: make go-mod-tidy
1414
- run: make go-mod-download
1515
- run: tar -cvf ./src.tar.gz ./ # preserve file permissions
16-
- uses: actions/upload-artifact@v3
16+
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
1717
with:
1818
name: src
1919
path: ./src.tar.gz
2020
lint:
2121
runs-on: ubuntu-20.04
2222
needs: gomod
2323
steps:
24-
- uses: actions/download-artifact@v3
24+
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
2525
with:
2626
name: src
2727
- run: tar -xvf ./src.tar.gz
@@ -34,7 +34,7 @@ jobs:
3434
matrix:
3535
testSuite: [test, integration-test, helm-test]
3636
steps:
37-
- uses: actions/download-artifact@v3
37+
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
3838
with:
3939
name: src
4040
- uses: helm/[email protected]
@@ -58,7 +58,7 @@ jobs:
5858
matrix:
5959
bin: [controller, kanctl, kando]
6060
steps:
61-
- uses: actions/download-artifact@v3
61+
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
6262
with:
6363
name: src
6464
- run: tar -xvf ./src.tar.gz
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-20.04
6868
needs: gomod
6969
steps:
70-
- uses: actions/download-artifact@v3
70+
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
7171
with:
7272
name: src
7373
- run: tar -xvf ./src.tar.gz
@@ -79,7 +79,7 @@ jobs:
7979
permissions:
8080
packages: write
8181
steps:
82-
- uses: actions/download-artifact@v3
82+
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
8383
with:
8484
name: src
8585
- uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0

.github/workflows/ossf-scorecard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
sarif_file: results.sarif
4545
-
4646
name: "Upload analysis results as 'Job Artifact'"
47-
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
47+
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
4848
with:
4949
name: SARIF file
5050
path: results.sarif

0 commit comments

Comments
 (0)