Skip to content

Commit 3f7bc8e

Browse files
committed
Upgrade github actions
1 parent d3e958c commit 3f7bc8e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout Source Code
8-
uses: actions/checkout@v3
8+
uses: actions/checkout@v4
99
- name: Install Java
1010
uses: actions/setup-java@v2
1111
with:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: 18
2626
- name: Setup Gradle
27-
uses: gradle/gradle-build-action@v3
27+
uses: gradle/actions/setup-gradle@v4
2828
with:
2929
cache-read-only: ${{ github.event_name == 'pull_request' }}
3030
- name: Build

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ jobs:
66
name: "Validation"
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: gradle/wrapper-validation-action@v1.0.4
9+
- uses: actions/checkout@v4
10+
- uses: gradle/actions/wrapper-validation@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Source Code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Fetch Git Tags
1313
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
1414
- name: Install Java

0 commit comments

Comments
 (0)