Skip to content

Commit 2b6b32a

Browse files
authored
chore(ci): pin github actions to exact version tags (#249)
1 parent 6e54c99 commit 2b6b32a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
steps:
2525
# Checkout the code
2626
- name: Checkout code
27-
uses: actions/checkout@v7
27+
uses: actions/checkout@v7.0.0
2828

2929
- name: Expose branch name
3030
run: echo ${{ github.ref }}
3131

3232
# Setup JDK and Maven
3333
- name: Set up JDK
34-
uses: actions/setup-java@v5
34+
uses: actions/setup-java@v5.3.0
3535
with:
3636
java-version-file: .java-version
3737
distribution: 'zulu'

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
name: Build and run tests
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v7
18+
uses: actions/checkout@v7.0.0
1919

2020
# Setup JDK and .m2/settings.xml
2121
- name: Set up JDK
22-
uses: actions/setup-java@v5
22+
uses: actions/setup-java@v5.3.0
2323
with:
2424
java-version-file: .java-version
2525
distribution: 'zulu'

.github/workflows/release-notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@master
15+
uses: actions/checkout@v7.0.0
1616
- name: Create Release Notes Markdown
1717
uses: docker://ghcr.io/rohwerj/release-notes-generator-action:v1.0.0
1818
env:
@@ -27,7 +27,7 @@ jobs:
2727
echo "VERSION=$VERSION" >> $GITHUB_ENV
2828
- name: Create a Draft Release Notes on GitHub
2929
id: create_release
30-
uses: actions/create-release@v1
30+
uses: actions/create-release@v1.1.4
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
3333
with:

0 commit comments

Comments
 (0)