Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub action #1290

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Check fresh compile and assemble of netCDF-Java project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: netCDF-Java Documentation Code Deprecation Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Java 8
uses: actions/setup-java@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: netCDF-Java Documentation Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Code Style Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tds-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout netCDF-Java PR
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Fetch latest AdoptOpenJDK 8 (hotspot) built for linux"
run: curl -L "https://api.adoptopenjdk.net/v2/binary/releases/openjdk8?openjdk_impl=hotspot&arch=x64&release=latest&type=jdk&os=linux" -o aojdk8-hs.tar.gz
- name: Setup Latest AdoptOpenJDK (hotspot) 8
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Build netCDF-java and publish to local maven repository
run: ./gradlew assemble publishToMavenLocal
- name: Checkout TDS Master
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Unidata/tds
path: tds_build_dir
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout netCDF-Java PR
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Fetch latest AdoptOpenJDK 8 (hotspot) built for linux"
run: curl -L "https://api.adoptopenjdk.net/v2/binary/releases/openjdk8?openjdk_impl=hotspot&arch=x64&release=latest&type=jdk&os=linux" -o aojdk8-hs.tar.gz
- name: Setup Latest AdoptOpenJDK (hotspot) 8
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Build netCDF-java and publish to local maven repository
run: ./gradlew assemble publishToMavenLocal
- name: Checkout TDS Master
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Unidata/tds
path: tds_build_dir
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
java-version: [ 8, 11, 14 ]
java-vendor: [ 'zulu', 'temurin' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build and test with Gradle (${{ matrix.java-vendor }} ${{ matrix.java-version }})
uses: Unidata/thredds-test-action@v2
with:
Expand Down
Loading