Skip to content

Commit ab16d16

Browse files
committed
Upgrade github actions versions.
1 parent 67ed841 commit ab16d16

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
steps:
1212

1313
- name: Checkout project
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
- name: Setup java
16-
uses: actions/setup-java@v2
16+
uses: actions/setup-java@v4
1717
with:
1818
distribution: ${{ matrix.distribution }}
1919
java-version: ${{ matrix.java }}

.github/workflows/deploy-snapshot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99

1010
steps:
1111
- name: Checkout project
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Cache local Maven repository
15-
uses: actions/cache@v2
15+
uses: actions/cache@v4
1616
with:
1717
path: ~/.m2/repository
1818
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
1919
restore-keys: ${{ runner.os }}-maven-
2020

2121
- name: Set up JDK 1.8
22-
uses: actions/setup-java@v1
22+
uses: actions/setup-java@v4
2323
with:
2424
java-version: 1.8
2525
server-id: ossrh

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout project
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v4
1212

1313
- name: Cache local Maven repository
14-
uses: actions/cache@v2
14+
uses: actions/cache@v4
1515
with:
1616
path: ~/.m2/repository
1717
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
1818
restore-keys: ${{ runner.os }}-maven-
1919

2020
- name: Set up JDK 1.8
21-
uses: actions/setup-java@v1
21+
uses: actions/setup-java@v4
2222
with:
2323
java-version: 1.8
2424
server-id: ossrh

0 commit comments

Comments
 (0)