Skip to content

Commit e8a229b

Browse files
Update GitHub Action Versions
1 parent 718ddb2 commit e8a229b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout sources
17-
uses: actions/checkout@v5.0.0
17+
uses: actions/checkout@v6.0.1
1818

1919
- name: Setup Java
20-
uses: actions/setup-java@v5.0.0
20+
uses: actions/setup-java@v5.1.0
2121
with:
2222
distribution: ${{ vars.DEFAULT_JAVA_DISTRIBUTION }}
2323
java-version: ${{ vars.DEFAULT_JAVA_VERSION }}

.github/workflows/build-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout sources
14-
uses: actions/checkout@v5.0.0
14+
uses: actions/checkout@v6.0.1
1515

1616
- name: Setup Java
17-
uses: actions/setup-java@v5.0.0
17+
uses: actions/setup-java@v5.1.0
1818
with:
1919
distribution: ${{ vars.DEFAULT_JAVA_DISTRIBUTION }}
2020
java-version: ${{ vars.DEFAULT_JAVA_VERSION }}

.github/workflows/build-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
echo "VERSION=$VERSION" >> $GITHUB_ENV
2121
2222
- name: Checkout sources
23-
uses: actions/checkout@v5.0.0
23+
uses: actions/checkout@v6.0.1
2424

2525
- name: Setup Java
26-
uses: actions/setup-java@v5.0.0
26+
uses: actions/setup-java@v5.1.0
2727
with:
2828
distribution: ${{ vars.DEFAULT_JAVA_DISTRIBUTION }}
2929
java-version: ${{ vars.DEFAULT_JAVA_VERSION }}
@@ -53,7 +53,7 @@ jobs:
5353
echo "TARGET_BRANCH=$TARGET_BRANCH" >> $GITHUB_ENV
5454
5555
- name: Checkout target branch
56-
uses: actions/checkout@v5.0.0
56+
uses: actions/checkout@v6.0.1
5757
with:
5858
ref: ${{ env.TARGET_BRANCH }}
5959
fetch-depth: 0
@@ -62,7 +62,7 @@ jobs:
6262
run: ./gradlew -Pversion=$VERSION updateVersionsAfterRelease
6363

6464
- name: Commit version updates after release
65-
uses: stefanzweifel/git-auto-commit-action@v7.0.0
65+
uses: stefanzweifel/git-auto-commit-action@v7.1.0
6666
with:
6767
commit_message: Version updated to ${{ env.VERSION }} in README.md, next snapshot in gradle.properties
6868
file_pattern: 'README.md gradle.properties'

.github/workflows/updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Git checkout
15-
uses: actions/checkout@v5.0.0
15+
uses: actions/checkout@v6.0.1
1616
with:
1717
# [Required] Access token with `workflow` scope.
1818
token: ${{ secrets.WORKFLOW_SECRET }}

0 commit comments

Comments
 (0)