Skip to content

Commit

Permalink
Upgrade GH actions to avoid deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
f4lco committed Nov 3, 2022
1 parent 0ad88db commit 6ebefef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
GRADLE_VERSION: "6.9.2"

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

- name: Set up JDK ${{ env.JDK_VERSION }}
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ env.JDK_VERSION }}
Expand Down Expand Up @@ -64,15 +64,15 @@ jobs:
EXTRA_PROPERTIES: ${{ matrix.properties }}

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

- uses: actions/download-artifact@v3
with:
name: gretty-private-repository
path: ${{ env.PRIVATE_REPO }}

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
Expand Down

0 comments on commit 6ebefef

Please sign in to comment.