-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps(actions): pin actions/download-artifact and actions/upload-artif…
…act (#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]>
- Loading branch information
1 parent
d54e663
commit 6d0264e
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,15 @@ jobs: | |
- run: make go-mod-tidy | ||
- run: make go-mod-download | ||
- run: tar -cvf ./src.tar.gz ./ # preserve file permissions | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | ||
with: | ||
name: src | ||
path: ./src.tar.gz | ||
lint: | ||
runs-on: ubuntu-20.04 | ||
needs: gomod | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: src | ||
- run: tar -xvf ./src.tar.gz | ||
|
@@ -34,7 +34,7 @@ jobs: | |
matrix: | ||
testSuite: [test, integration-test, helm-test] | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: src | ||
- uses: helm/[email protected] | ||
|
@@ -58,7 +58,7 @@ jobs: | |
matrix: | ||
bin: [controller, kanctl, kando] | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: src | ||
- run: tar -xvf ./src.tar.gz | ||
|
@@ -67,7 +67,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
needs: gomod | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: src | ||
- run: tar -xvf ./src.tar.gz | ||
|
@@ -79,7 +79,7 @@ jobs: | |
permissions: | ||
packages: write | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: src | ||
- uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters