Skip to content

Commit cf43419

Browse files
authored
Update pipeline.yml
replace hardcoded Ubuntu version with "Ubuntu-latest"
1 parent d284c81 commit cf43419

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
# old-school build and jar method. No tests run or compiled.
1414
build-1_6:
15-
runs-on: ubuntu-16.04
15+
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
1818
# build for java 1.6, however don't run any tests
@@ -38,7 +38,7 @@ jobs:
3838
path: target/org.json.jar
3939

4040
build:
41-
runs-on: ubuntu-16.04
41+
runs-on: ubuntu-latest
4242
strategy:
4343
matrix:
4444
# build against supported Java LTS versions:
@@ -71,4 +71,4 @@ jobs:
7171
uses: actions/upload-artifact@v1
7272
with:
7373
name: Test Report ${{ matrix.java }}
74-
path: target/site/
74+
path: target/site/

0 commit comments

Comments
 (0)