Skip to content

Commit

Permalink
Update actions for node 16
Browse files Browse the repository at this point in the history
Used action were using node12 which is deprecated.

Change-Id: I14d4a4cca65842618f511dd7c84f70dfd30e084d
  • Loading branch information
cvagner committed Oct 23, 2023
1 parent cfff41b commit eff3bad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Verify with Maven
run: mvn -B -U -e -ff clean verify --file pom.xml
- run: mkdir staging && cp assemblies/target/gis-plugin-assemblies-*.zip staging
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Upload artifact
path: staging

0 comments on commit eff3bad

Please sign in to comment.