From cf43419015af4dd3dcfa0e217efab8c521011c0f Mon Sep 17 00:00:00 2001 From: Sean Leary Date: Sat, 9 Oct 2021 10:14:47 -0500 Subject: [PATCH] Update pipeline.yml replace hardcoded Ubuntu version with "Ubuntu-latest" --- .github/workflows/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 98ee6c1..ce91174 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -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 @@ -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: @@ -71,4 +71,4 @@ jobs: uses: actions/upload-artifact@v1 with: name: Test Report ${{ matrix.java }} - path: target/site/ \ No newline at end of file + path: target/site/