Skip to content
This repository was archived by the owner on Jun 6, 2024. It is now read-only.

Commit 3f8f02f

Browse files
authored
Upgrade github actions plugins (#64)
This should fix some deprecation warnings
1 parent b9ff2dc commit 3f8f02f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414

1515
- name: Set up JDK 1.8
16-
uses: actions/setup-java@v1
16+
uses: actions/setup-java@v3
1717
with:
18-
java-version: 1.8
18+
distribution: temurin
19+
java-version: 8
1920

2021
- name: Test
2122
run: ./gradlew test

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
- name: Set up JDK 1.8
17-
uses: actions/setup-java@v1
17+
uses: actions/setup-java@v3
1818
with:
19-
java-version: 1.8
19+
distribution: temurin
20+
java-version: 8
2021

2122
- name: Test
2223
run: ./gradlew test --stacktrace

0 commit comments

Comments
 (0)