Skip to content

Commit

Permalink
Update pipeline.yml
Browse files Browse the repository at this point in the history
replace hardcoded Ubuntu version with "Ubuntu-latest"
  • Loading branch information
stleary committed Oct 9, 2021
1 parent d284c81 commit cf43419
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yml
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
# old-school build and jar method. No tests run or compiled.
build-1_6:
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
strategy:
matrix:
# build for java 1.6, however don't run any tests
Expand All @@ -38,7 +38,7 @@ jobs:
path: target/org.json.jar

build:
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
strategy:
matrix:
# build against supported Java LTS versions:
Expand Down Expand Up @@ -71,4 +71,4 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: Test Report ${{ matrix.java }}
path: target/site/
path: target/site/

0 comments on commit cf43419

Please sign in to comment.