From 84220efcbb22622eca4dafb6ef010618e03c273b Mon Sep 17 00:00:00 2001 From: Sean Arms <67096+lesserwhirls@users.noreply.github.com> Date: Wed, 26 Feb 2025 10:20:00 -0700 Subject: [PATCH] Update to thredds-test-action v3 * update github actions to use thredds-test-action v3, which is based on * ubuntu 24.04 (v2 based on 20.04) add corretto to test matrix on github actions --- .github/workflows/tds.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tds.yml b/.github/workflows/tds.yml index ea0f485e1d..a4530b4076 100644 --- a/.github/workflows/tds.yml +++ b/.github/workflows/tds.yml @@ -9,12 +9,12 @@ jobs: strategy: matrix: java-version: [ 17 ] - java-vendor: [ 'temurin' ] + java-vendor: [ 'temurin' 'corretto' ] servletcontainer: [ 'tomcat10' ] steps: - uses: actions/checkout@v4 - name: Build and test with Gradle (${{ matrix.java-vendor }} ${{ matrix.java-version }}) - uses: Unidata/thredds-test-action@v2 + uses: Unidata/thredds-test-action@v3 with: java-vendor: ${{ matrix.java-vendor }} java-version: ${{ matrix.java-version }}