File tree Expand file tree Collapse file tree 7 files changed +23
-23
lines changed Expand file tree Collapse file tree 7 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v4
41
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
45
- uses : github/codeql-action/init@v3
45
+ uses : github/codeql-action/init@b374143c1149a9115d881581d29b8390bbcbb59c # v3
46
46
with :
47
47
languages : ${{ matrix.language }}
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
53
53
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
54
# If this step fails, then you should remove it and run the build manually (see below)
55
55
- name : Autobuild
56
- uses : github/codeql-action/autobuild@v3
56
+ uses : github/codeql-action/autobuild@b374143c1149a9115d881581d29b8390bbcbb59c # v3
57
57
58
58
# ℹ️ Command-line programs to run using the OS shell.
59
59
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
67
67
# make release
68
68
69
69
- name : Perform CodeQL Analysis
70
- uses : github/codeql-action/analyze@v3
70
+ uses : github/codeql-action/analyze@b374143c1149a9115d881581d29b8390bbcbb59c # v3
Original file line number Diff line number Diff line change 20
20
env :
21
21
WORKSPACE : ${{ github.workspace }}
22
22
steps :
23
- - uses : actions/checkout@v4
23
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
24
24
- name : Set up JDK
25
25
uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
26
26
with :
44
44
runs-on : ubuntu-latest
45
45
steps :
46
46
- name : Checkout repository
47
- uses : actions/checkout@v4
47
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
48
48
with :
49
49
token : ${{ secrets.GH_TOKEN }}
50
50
- name : Set up JDK 11
77
77
id : dispatch_message
78
78
run : echo "value={\"message\":\"New Core Snapshot $(date) - $GITHUB_SHA\"}" >> $GITHUB_OUTPUT
79
79
- 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
81
81
with :
82
82
workflow : Java CI
83
83
repo : grails/grails-functional-tests
Original file line number Diff line number Diff line change 43
43
distribution : ' adopt'
44
44
java-version : ' 11.0.6'
45
45
- name : Cache local Maven repository & Groovy
46
- uses : actions/cache@v3
46
+ uses : actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
47
47
with :
48
48
path : |
49
49
~/groovy
@@ -128,14 +128,14 @@ jobs:
128
128
fail-fast : true
129
129
runs-on : ubuntu-latest
130
130
steps :
131
- - uses : actions/checkout@v4
131
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
132
132
- name : Set up JDK
133
133
uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
134
134
with :
135
135
distribution : ' adopt'
136
136
java-version : ' 11'
137
137
- name : Cache local Maven repository & Groovy
138
- uses : actions/cache@v3
138
+ uses : actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
139
139
with :
140
140
path : |
141
141
~/groovy
Original file line number Diff line number Diff line change 16
16
release_notes :
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v4
19
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
20
20
- name : Check if it has release drafter config file
21
21
id : check_release_drafter
22
22
run : |
26
26
id : extract_branch
27
27
run : echo ::set-output name=value::${GITHUB_REF:11}
28
28
# If it has release drafter:
29
- - uses : release-drafter/release-drafter@v5
29
+ - uses : release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5
30
30
if : steps.check_release_drafter.outputs.has_release_drafter == 'true'
31
31
env :
32
32
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
41
41
id : release_notes
42
42
with :
43
43
token : ${{ secrets.GH_TOKEN }}
44
- - uses : ncipollo/release-action@v1
44
+ - uses : ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 # v1
45
45
if : steps.check_release_drafter.outputs.has_release_drafter == 'false' && steps.release_notes.outputs.generated_changelog == 'true'
46
46
with :
47
47
allowUpdates : true
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
GIT_USER_EMAIL : behlp@unityfoundation.io
18
18
steps :
19
19
- name : Checkout repository
20
- uses : actions/checkout@v4
20
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
21
21
with :
22
22
token : ${{ secrets.GH_TOKEN }}
23
23
- name : Set up JDK
24
- uses : actions/setup-java@v4
24
+ uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
25
25
with :
26
26
distribution : ' adopt'
27
27
java-version : ' 11'
@@ -105,7 +105,7 @@ jobs:
105
105
env :
106
106
RELEASE_VERSION : ${{ needs.publish.outputs.release_version }}
107
107
- name : Invoke grails-doc release workflow
108
- uses : benc-uk/workflow-dispatch@v1.2
108
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
109
109
with :
110
110
workflow : Release
111
111
repo : grails/grails-doc
@@ -127,7 +127,7 @@ jobs:
127
127
- name : Invoke grails-static-website release workflow
128
128
if : success()
129
129
id : grails_static_website
130
- uses : benc-uk/workflow-dispatch@v1.2
130
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
131
131
with :
132
132
workflow : Release
133
133
repo : grails/grails-static-website
Original file line number Diff line number Diff line change 21
21
GIT_USER_EMAIL : behlp@unityfoundation.io
22
22
steps :
23
23
- name : Checkout repository
24
- uses : actions/checkout@v4
24
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
25
25
with :
26
26
ref : " v${{ github.event.inputs.release }}"
27
27
token : ${{ secrets.GH_TOKEN }}
54
54
- name : Upload artifacts to the Github release
55
55
id : upload_artifact
56
56
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
58
58
with :
59
59
created_tag : v${{ github.event.inputs.release }}
60
60
args : build/distributions/grails-${{ steps.release_version.outputs.release_version }}.zip
70
70
- name : Invoke grails-doc release workflow
71
71
if : steps.assemble.outcome == 'success'
72
72
id : grails_doc
73
- uses : benc-uk/workflow-dispatch@v1.2
73
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
74
74
with :
75
75
workflow : Release
76
76
repo : grails/grails-doc
80
80
- name : Invoke grails-static-website release workflow
81
81
if : steps.assemble.outcome == 'success'
82
82
id : grails_static_website
83
- uses : benc-uk/workflow-dispatch@v1.2
83
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
84
84
with :
85
85
workflow : Release
86
86
repo : grails/grails-static-website
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
12
12
contents : read
13
13
steps :
14
14
- name : Checkout repository
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
16
16
with :
17
17
token : ${{ secrets.GH_TOKEN }}
18
18
ref : v${{ github.event.inputs.version }}
19
19
- name : Set up JDK
20
- uses : actions/setup-java@v3
20
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
21
21
with :
22
22
distribution : ' adopt'
23
23
java-version : ' 8'
You can’t perform that action at this time.
0 commit comments