File tree Expand file tree Collapse file tree 6 files changed +21
-21
lines changed Expand file tree Collapse file tree 6 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ jobs:
3636
3737 steps :
3838 - name : Checkout repository
39- uses : actions/checkout@v4
39+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
4040
4141 # Initializes the CodeQL tools for scanning.
4242 - name : Initialize CodeQL
43- uses : github/codeql-action/init@v2
43+ uses : github/codeql-action/init@305f6546310b9203e892c28c1484e82977f4f63d # v2
4444 with :
4545 languages : ${{ matrix.language }}
4646 # If you wish to specify custom queries, you can do so here or in a config file.
5151 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5252 # If this step fails, then you should remove it and run the build manually (see below)
5353 - name : Autobuild
54- uses : github/codeql-action/autobuild@v2
54+ uses : github/codeql-action/autobuild@305f6546310b9203e892c28c1484e82977f4f63d # v2
5555
5656 # ℹ️ Command-line programs to run using the OS shell.
5757 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6565 # make release
6666
6767 - name : Perform CodeQL Analysis
68- uses : github/codeql-action/analyze@v2
68+ uses : github/codeql-action/analyze@305f6546310b9203e892c28c1484e82977f4f63d # v2
Original file line number Diff line number Diff line change 2020 env :
2121 WORKSPACE : ${{ github.workspace }}
2222 steps :
23- - uses : actions/checkout@v4
23+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2424 - name : Set up JDK
2525 uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
2626 with :
4444 runs-on : ubuntu-latest
4545 steps :
4646 - name : Checkout repository
47- uses : actions/checkout@v4
47+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
4848 with :
4949 token : ${{ secrets.GH_TOKEN }}
5050 - name : Set up JDK 11
7777 id : dispatch_message
7878 run : echo "value={\"message\":\"New Core Snapshot $(date) - $GITHUB_SHA\"}" >> $GITHUB_OUTPUT
7979 - name : Invoke the Java CI workflow in Grails Functional Tests
80- uses : benc-uk/workflow-dispatch@v1.2
80+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
8181 with :
8282 workflow : Java CI
8383 repo : grails/grails-functional-tests
Original file line number Diff line number Diff line change 4343 distribution : ' adopt'
4444 java-version : ' 11.0.6'
4545 - name : Cache local Maven repository & Groovy
46- uses : actions/cache@v3
46+ uses : actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
4747 with :
4848 path : |
4949 ~/groovy
@@ -128,14 +128,14 @@ jobs:
128128 fail-fast : true
129129 runs-on : ubuntu-latest
130130 steps :
131- - uses : actions/checkout@v4
131+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
132132 - name : Set up JDK
133133 uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
134134 with :
135135 distribution : ' adopt'
136136 java-version : ' 11'
137137 - name : Cache local Maven repository & Groovy
138- uses : actions/cache@v3
138+ uses : actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
139139 with :
140140 path : |
141141 ~/groovy
Original file line number Diff line number Diff line change 1616 release_notes :
1717 runs-on : ubuntu-latest
1818 steps :
19- - uses : actions/checkout@v4
19+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2020 - name : Check if it has release drafter config file
2121 id : check_release_drafter
2222 run : |
2626 id : extract_branch
2727 run : echo ::set-output name=value::${GITHUB_REF:11}
2828 # If it has release drafter:
29- - uses : release-drafter/release-drafter@v5
29+ - uses : release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5
3030 if : steps.check_release_drafter.outputs.has_release_drafter == 'true'
3131 env :
3232 GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
4141 id : release_notes
4242 with :
4343 token : ${{ secrets.GH_TOKEN }}
44- - uses : ncipollo/release-action@v1
44+ - uses : ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 # v1
4545 if : steps.check_release_drafter.outputs.has_release_drafter == 'false' && steps.release_notes.outputs.generated_changelog == 'true'
4646 with :
4747 allowUpdates : true
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
1818 GIT_USER_EMAIL : behlp@unityfoundation.io
1919 steps :
2020 - name : Checkout repository
21- uses : actions/checkout@v4
21+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2222 with :
2323 token : ${{ secrets.GH_TOKEN }}
24- - uses : gradle/wrapper-validation-action@v1
24+ - uses : gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1
2525 - name : Set up JDK
2626 uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
2727 with :
9898 - name : Invoke grails-doc release workflow
9999 if : steps.publish.outcome == 'success'
100100 id : grails_doc
101- uses : benc-uk/workflow-dispatch@v1.2
101+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
102102 with :
103103 workflow : Release
104104 repo : grails/grails-doc
@@ -108,7 +108,7 @@ jobs:
108108 - name : Invoke grails-static-website release workflow
109109 if : steps.publish.outcome == 'success'
110110 id : grails_static_website
111- uses : benc-uk/workflow-dispatch@v1.2
111+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
112112 with :
113113 workflow : Release
114114 repo : grails/grails-static-website
Original file line number Diff line number Diff line change 2121 GIT_USER_EMAIL : behlp@unityfoundation.io
2222 steps :
2323 - name : Checkout repository
24- uses : actions/checkout@v4
24+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2525 with :
2626 ref : " v${{ github.event.inputs.release }}"
2727 token : ${{ secrets.GH_TOKEN }}
5454 - name : Upload artifacts to the Github release
5555 id : upload_artifact
5656 if : steps.assemble.outcome == 'success'
57- uses : Roang-zero1/github-upload-release-artifacts-action@v3
57+ uses : Roang-zero1/github-upload-release-artifacts-action@87271b3f8dca9feb9e9d44381fddd2db7f09d6e1 # v3
5858 with :
5959 created_tag : v${{ github.event.inputs.release }}
6060 args : build/distributions/grails-${{ steps.release_version.outputs.release_version }}.zip
7070 - name : Invoke grails-doc release workflow
7171 if : steps.assemble.outcome == 'success'
7272 id : grails_doc
73- uses : benc-uk/workflow-dispatch@v1.2
73+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
7474 with :
7575 workflow : Release
7676 repo : grails/grails-doc
8080 - name : Invoke grails-static-website release workflow
8181 if : steps.assemble.outcome == 'success'
8282 id : grails_static_website
83- uses : benc-uk/workflow-dispatch@v1.2
83+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
8484 with :
8585 workflow : Release
8686 repo : grails/grails-static-website
You can’t perform that action at this time.
0 commit comments