Skip to content

Commit 8ae99a5

Browse files
Pin dependencies
1 parent 21a2f89 commit 8ae99a5

7 files changed

+23
-23
lines changed

.github/workflows/codeql.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@b374143c1149a9115d881581d29b8390bbcbb59c # v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v3
56+
uses: github/codeql-action/autobuild@b374143c1149a9115d881581d29b8390bbcbb59c # v3
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v3
70+
uses: github/codeql-action/analyze@b374143c1149a9115d881581d29b8390bbcbb59c # v3

.github/workflows/gradle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
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:
@@ -44,7 +44,7 @@ jobs:
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
@@ -77,7 +77,7 @@ jobs:
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/[email protected]
80+
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
8181
with:
8282
workflow: Java CI
8383
repo: grails/grails-functional-tests

.github/workflows/groovy-joint-workflow.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
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

.github/workflows/release-notes.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
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: |
@@ -26,7 +26,7 @@ jobs:
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 }}
@@ -41,7 +41,7 @@ jobs:
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

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
GIT_USER_EMAIL: [email protected]
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2121
with:
2222
token: ${{ secrets.GH_TOKEN }}
2323
- name: Set up JDK
24-
uses: actions/setup-java@v4
24+
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
2525
with:
2626
distribution: 'adopt'
2727
java-version: '11'
@@ -105,7 +105,7 @@ jobs:
105105
env:
106106
RELEASE_VERSION: ${{ needs.publish.outputs.release_version }}
107107
- name: Invoke grails-doc release workflow
108-
uses: benc-uk/[email protected]
108+
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
109109
with:
110110
workflow: Release
111111
repo: grails/grails-doc
@@ -127,7 +127,7 @@ jobs:
127127
- name: Invoke grails-static-website release workflow
128128
if: success()
129129
id: grails_static_website
130-
uses: benc-uk/[email protected]
130+
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
131131
with:
132132
workflow: Release
133133
repo: grails/grails-static-website

.github/workflows/retry-release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
GIT_USER_EMAIL: [email protected]
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 }}
@@ -54,7 +54,7 @@ jobs:
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
@@ -70,7 +70,7 @@ jobs:
7070
- name: Invoke grails-doc release workflow
7171
if: steps.assemble.outcome == 'success'
7272
id: grails_doc
73-
uses: benc-uk/[email protected]
73+
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
7474
with:
7575
workflow: Release
7676
repo: grails/grails-doc
@@ -80,7 +80,7 @@ jobs:
8080
- name: Invoke grails-static-website release workflow
8181
if: steps.assemble.outcome == 'success'
8282
id: grails_static_website
83-
uses: benc-uk/[email protected]
83+
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2
8484
with:
8585
workflow: Release
8686
repo: grails/grails-static-website

.github/workflows/sdkman.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
contents: read
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1616
with:
1717
token: ${{ secrets.GH_TOKEN }}
1818
ref: v${{ github.event.inputs.version }}
1919
- name: Set up JDK
20-
uses: actions/setup-java@v3
20+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
2121
with:
2222
distribution: 'adopt'
2323
java-version: '8'

0 commit comments

Comments
 (0)