File tree 6 files changed +27
-27
lines changed
6 files changed +27
-27
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ jobs:
36
36
37
37
steps :
38
38
- name : Checkout repository
39
- uses : actions/checkout@v4
39
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
40
40
41
41
# Initializes the CodeQL tools for scanning.
42
42
- name : Initialize CodeQL
43
- uses : github/codeql-action/init@v2
43
+ uses : github/codeql-action/init@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2
44
44
with :
45
45
languages : ${{ matrix.language }}
46
46
# If you wish to specify custom queries, you can do so here or in a config file.
51
51
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
52
52
# If this step fails, then you should remove it and run the build manually (see below)
53
53
- name : Autobuild
54
- uses : github/codeql-action/autobuild@v2
54
+ uses : github/codeql-action/autobuild@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2
55
55
56
56
# ℹ️ Command-line programs to run using the OS shell.
57
57
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
65
65
# make release
66
66
67
67
- name : Perform CodeQL Analysis
68
- uses : github/codeql-action/analyze@v2
68
+ uses : github/codeql-action/analyze@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2
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
- uses : actions/setup-java@v3
25
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
26
26
with :
27
27
distribution : ' adopt'
28
28
java-version : ${{ matrix.java }}
@@ -44,11 +44,11 @@ jobs:
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
51
- uses : actions/setup-java@v3
51
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
52
52
with :
53
53
distribution : ' adopt'
54
54
java-version : 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
-
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 @@ -38,12 +38,12 @@ jobs:
38
38
groovyVersion : ${{ steps.groovy-version.outputs.value }}
39
39
steps :
40
40
- name : Set up JDK
41
- uses : actions/setup-java@v3
41
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
42
42
with :
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
- uses : actions/setup-java@v3
133
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
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 @@ -18,12 +18,12 @@ jobs:
18
18
19
19
steps :
20
20
- name : Checkout repository
21
- uses : actions/checkout@v4
21
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
22
22
with :
23
23
token : ${{ secrets.GH_TOKEN }}
24
- - uses : gradle/wrapper-validation-action@v1
24
+ - uses : gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1
25
25
- name : Set up JDK
26
- uses : actions/setup-java@v3
26
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
27
27
with :
28
28
distribution : ' adopt'
29
29
java-version : ${{ matrix.java }}
98
98
- name : Invoke grails-doc release workflow
99
99
if : steps.publish.outcome == 'success'
100
100
id : grails_doc
101
-
101
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
102
102
with :
103
103
workflow : Release
104
104
repo : grails/grails-doc
@@ -108,7 +108,7 @@ jobs:
108
108
- name : Invoke grails-static-website release workflow
109
109
if : steps.publish.outcome == 'success'
110
110
id : grails_static_website
111
-
111
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
112
112
with :
113
113
workflow : Release
114
114
repo : grails/grails-static-website
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ jobs:
25
25
GRADLE_OPTS : -Xmx1500m -Dfile.encoding=UTF-8
26
26
steps :
27
27
- name : Checkout repository
28
- uses : actions/checkout@v4
28
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
29
29
with :
30
30
ref : " v${{ github.event.inputs.release }}"
31
31
token : ${{ secrets.GH_TOKEN }}
32
- - uses : gradle/wrapper-validation-action@v1
32
+ - uses : gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1
33
33
- name : Set up JDK
34
- uses : actions/setup-java@v3
34
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
35
35
with :
36
36
distribution : ' adopt'
37
37
java-version : ${{ matrix.java }}
75
75
- name : Invoke grails-doc release workflow
76
76
if : steps.assemble.outcome == 'success'
77
77
id : grails_doc
78
-
78
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
79
79
with :
80
80
workflow : Release
81
81
repo : grails/grails-doc
85
85
- name : Invoke grails-static-website release workflow
86
86
if : steps.assemble.outcome == 'success'
87
87
id : grails_static_website
88
-
88
+ uses : benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
89
89
with :
90
90
workflow : Release
91
91
repo : grails/grails-static-website
You can’t perform that action at this time.
0 commit comments