Skip to content

Commit

Permalink
Upgrade github actions plugins (TheoKanning#64)
Browse files Browse the repository at this point in the history
This should fix some deprecation warnings
  • Loading branch information
TheoKanning authored Jan 3, 2023
1 parent b9ff2dc commit 3f8f02f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
distribution: temurin
java-version: 8

- name: Test
run: ./gradlew test
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
distribution: temurin
java-version: 8

- name: Test
run: ./gradlew test --stacktrace
Expand Down

0 comments on commit 3f8f02f

Please sign in to comment.