Skip to content

Commit 9366fdd

Browse files
chore(deps): Update gradle and github actions
1 parent a59cea6 commit 9366fdd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
os: [ubuntu-latest, windows-latest]
2727
steps:
2828
- name: Check out
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
- uses: gradle/wrapper-validation-action@v3
3131
- name: setup jdk ${{ env.RUNTIME_VERSION }}
32-
uses: actions/setup-java@v4
32+
uses: actions/setup-java@v5
3333
with:
3434
distribution: temurin
3535
java-version: ${{ env.RUNTIME_VERSION }}
@@ -40,7 +40,7 @@ jobs:
4040
arguments: build
4141
- name: Archive test results
4242
if: ${{ always() }}
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: ${{ runner.os }}-test-results
4646
path: |

.github/workflows/codeql-analysis.yml

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

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
# We must fetch at least the immediate parents so that if this is
3939
# a pull request then we can checkout the head.
@@ -46,14 +46,14 @@ jobs:
4646

4747
# We need to build with a newer JDK
4848
- name: setup jdk ${{ env.RUNTIME_VERSION }}
49-
uses: actions/setup-java@v4
49+
uses: actions/setup-java@v5
5050
with:
5151
distribution: temurin
5252
java-version: ${{ env.RUNTIME_VERSION }}
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL
56-
uses: github/codeql-action/init@v3
56+
uses: github/codeql-action/init@v4
5757
with:
5858
languages: ${{ matrix.language }}
5959
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -68,4 +68,4 @@ jobs:
6868
arguments: assemble
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v3
71+
uses: github/codeql-action/analyze@v4

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)