Skip to content

Commit d7bd133

Browse files
committed
Pin all action versions
1 parent 89bf3ab commit d7bd133

File tree

8 files changed

+24
-25
lines changed

8 files changed

+24
-25
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
1919
with:
2020
# We must fetch at least the immediate parents so that if this is
2121
# a pull request then we can checkout the head.
@@ -28,15 +28,15 @@ jobs:
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL
31-
uses: github/codeql-action/init@v3
31+
uses: github/codeql-action/init@497990dfed22177a82ba1bbab381bc8f6d27058f
3232
# Override language selection by uncommenting this and choosing your languages
3333
# with:
3434
# languages: go, javascript, csharp, python, cpp, java
3535

3636
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
3737
# If this step fails, then you should remove it and run the build manually (see below)
3838
- name: Autobuild
39-
uses: github/codeql-action/autobuild@v3
39+
uses: github/codeql-action/autobuild@497990dfed22177a82ba1bbab381bc8f6d27058f
4040

4141
# ℹ️ Command-line programs to run using the OS shell.
4242
# 📚 https://git.io/JvXDl
@@ -50,4 +50,4 @@ jobs:
5050
# make release
5151

5252
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@v3
53+
uses: github/codeql-action/analyze@497990dfed22177a82ba1bbab381bc8f6d27058f

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
1818
with:
1919
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }}
2020

2121
- name: Set up JDK
22-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2323
with:
2424
java-version: '20'
2525
distribution: 'adopt'
2626

2727
- name: Cache Maven packages
28-
uses: actions/cache@v3
28+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
2929
with:
3030
path: ~/.m2
3131
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/javaci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
2424
- name: Set up JDK
25-
uses: actions/setup-java@v4
25+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2626
with:
2727
java-version: '20'
2828
distribution: 'adopt'
2929
- name: Cache Maven packages
30-
uses: actions/cache@v3
30+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
3131
with:
3232
path: ~/.m2
3333
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -46,14 +46,14 @@ jobs:
4646
java: [ '11', '17', '20' ]
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
5050
- name: Set up JDK ${{ matrix.java }}
51-
uses: actions/setup-java@v4
51+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
5252
with:
5353
java-version: ${{ matrix.java }}
5454
distribution: 'adopt'
5555
- name: Cache Maven packages
56-
uses: actions/cache@v3
56+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
5757
with:
5858
path: ~/.m2
5959
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/label_new_issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Add 'needs response' label to new issues
14-
uses: actions-ecosystem/action-add-labels@v1
14+
uses: actions-ecosystem/action-add-labels@bd52874380e3909a1ac983768df6976535ece7f8
1515
with:
1616
github_token: ${{ secrets.GITHUB_TOKEN }}
1717
labels: 'needs response'

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
1515
- name: Set up JDK 11
16-
uses: actions/setup-java@v4
16+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
1717
with:
1818
distribution: 'temurin'
1919
java-version: '11'
@@ -22,7 +22,7 @@ jobs:
2222
run: mvn -B package --file pom.xml
2323

2424
- name: Set up Apache Maven Central
25-
uses: actions/setup-java@v4
25+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2626
with: # running setup-java again overwrites the settings.xml
2727
distribution: 'temurin'
2828
java-version: '11'

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ jobs:
2929
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
3333
- name: Prepare the next main release
34-
uses: Adyen/release-automation-action@v1.3.1
35-
with:
34+
uses: Adyen/release-automation-action@596a5a3a2d677ec5329c916d7a4628f8045a5585 with:
3635
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }}
3736
develop-branch: main
3837
version-files: pom.xml src/main/java/com/adyen/Client.java README.md

.github/workflows/sonarcloud.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ jobs:
1313
java-sonarqube:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
1717
with:
1818
fetch-depth: 0
1919
- name: Set up JDK 17
20-
uses: actions/setup-java@v4
20+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2121
with:
2222
java-version: 17
2323
distribution: 'zulu'
2424
- name: Cache SonarQube Cloud packages
25-
uses: actions/cache@v4
25+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
2626
with:
2727
path: ~/.sonar/cache
2828
key: ${{ runner.os }}-sonar
2929
restore-keys: ${{ runner.os }}-sonar
3030
- name: Cache Maven packages
31-
uses: actions/cache@v4
31+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
3232
with:
3333
path: ~/.m2
3434
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@v9
14+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639
1515
with:
1616
repo-token: ${{ secrets.GITHUB_TOKEN }}
1717
stale-issue-message: 'This issue has been automatically marked as stale due to inactivity and will be closed in 7 days if no further activity occurs.'

0 commit comments

Comments
 (0)