-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: don't pin official GH actions via commit, just tag
There's no real value in doing it via commit for official GH actions. We can keep using pinned commits for unofficial actions. It's hassle for no gain. Maybe going forward we can limit this further by only being paranoid for the jobs with any access to tokens.
- Loading branch information
1 parent
556b768
commit 455fabd
Showing
6 changed files
with
8 additions
and
8 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
build_system: [autotools, cmake] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f #v4.1.3 | ||
- uses: actions/[email protected].6 | ||
|
||
######################## | ||
# Install Dependencies # | ||
|
@@ -157,7 +157,7 @@ jobs: | |
run: ./build-aux/ci_build.bash -b ${{ matrix.build_system }} -m "${{ matrix.compiler }}" -d small -p test -n small | ||
|
||
# Attempt to upload the test logs as artifacts if any step has failed | ||
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 #v4.3.3 | ||
- uses: actions/[email protected] | ||
if: ${{ failure() }} | ||
with: | ||
name: ${{ matrix.os }} ${{ matrix.build_system }} Test Logs | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -55,7 +55,7 @@ jobs: | |
# text file and will not match the output from xzgrep. | ||
run: git config --global core.autocrlf false | ||
|
||
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f #v4.1.3 | ||
- uses: actions/[email protected].6 | ||
|
||
|
||
######################## | ||
|
@@ -117,7 +117,7 @@ jobs: | |
############### | ||
|
||
# Upload the test logs as artifacts if any step has failed. | ||
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 #v4.3.3 | ||
- uses: actions/[email protected] | ||
if: ${{ failure() }} | ||
with: | ||
name: ${{ matrix.msys2_env }} ${{ matrix.build_system }} Test Logs | ||
|