Skip to content

Commit 5e32f4b

Browse files
Pin dependencies
1 parent 0a8ddd1 commit 5e32f4b

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/codeql.yml

+4-4
Original file line numberDiff line numberDiff 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@49abf0ba24d0b7953cb586944e918a0b92074c80 # 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.
@@ -51,7 +51,7 @@ jobs:
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@49abf0ba24d0b7953cb586944e918a0b92074c80 # 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
@@ -65,4 +65,4 @@ jobs:
6565
# make release
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v2
68+
uses: github/codeql-action/analyze@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2

.github/workflows/gradle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
WORKSPACE: ${{ github.workspace }}
3030
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3333
- name: Set up JDK
34-
uses: actions/setup-java@v3
34+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
3535
with:
3636
distribution: 'adopt'
3737
java-version: ${{ matrix.java }}
@@ -56,7 +56,7 @@ jobs:
5656
arguments: build groovydoc
5757
- name: Publish Test Report
5858
if: steps.build.outcome == 'failure' || steps.tests.outcome == 'failure'
59-
uses: scacap/action-surefire-report@v1
59+
uses: scacap/action-surefire-report@6efd3d10b5c1996a0724dd4c4915a073f685fefa # v1
6060
with:
6161
github_token: ${{ secrets.GITHUB_TOKEN }}
6262
report_paths: '**/build/test-results/test/TEST-*.xml'

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
groovyVersion: ${{ steps.groovy-version.outputs.value }}
3838
steps:
3939
- name: Set up JDK
40-
uses: actions/setup-java@v3
40+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
4141
with:
4242
distribution: 'adopt'
4343
java-version: '11.0.6'
4444
- name: Cache local Maven repository & Groovy
45-
uses: actions/cache@v3
45+
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
4646
with:
4747
path: |
4848
~/groovy
@@ -127,14 +127,14 @@ jobs:
127127
fail-fast: true
128128
runs-on: ubuntu-latest
129129
steps:
130-
- uses: actions/checkout@v4
130+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
131131
- name: Set up JDK
132-
uses: actions/setup-java@v3
132+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
133133
with:
134134
distribution: 'adopt'
135135
java-version: '11.0.6'
136136
- name: Cache local Maven repository & Groovy
137-
uses: actions/cache@v3
137+
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
138138
with:
139139
path: |
140140
~/groovy

.github/workflows/release-notes.yml

+2-2
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: |
@@ -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

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2323
with:
2424
token: ${{ secrets.GH_TOKEN }}
25-
- uses: gradle/wrapper-validation-action@v1
25+
- uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1
2626
- name: Set up JDK
27-
uses: actions/setup-java@v3
27+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
2828
with:
2929
distribution: 'adopt'
3030
java-version: ${{ matrix.java }}

.github/workflows/retry-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2929
with:
3030
ref: "v${{ github.event.inputs.release }}"
3131
token: ${{ secrets.GH_TOKEN }}
32-
- uses: gradle/wrapper-validation-action@v1
32+
- uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1
3333
- name: Set up JDK
34-
uses: actions/setup-java@v3
34+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
3535
with:
3636
distribution: 'adopt'
3737
java-version: ${{ matrix.java }}

0 commit comments

Comments
 (0)