Skip to content

Commit

Permalink
Update github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Aug 21, 2024
1 parent 74ef153 commit 27e0031
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compare-remote-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
docker_image:
description: 'Docker Image Name'
required: true
default: '0.35.0'
default: '0.36.0'
type: string

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mvn-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
Expand All @@ -41,7 +41,7 @@ jobs:
docker compose down
- name: Archive Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Integration Benchmarks and Logs
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mvn-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-remote-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
docker_image:
description: 'Docker Image Name'
required: true
default: '0.35.0'
default: '0.36.0'
type: string

jobs:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/remote-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
TEST_ITERS: ${{inputs.test_iterations}}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
DISTRIB: ${{inputs.distribution}}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Local Scripts
run: |
Expand All @@ -131,10 +131,10 @@ jobs:
ACTOR: "${{ inputs.run_label == 'adhoc' && github.actor || github.repository_owner }}"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
Expand All @@ -150,15 +150,15 @@ jobs:
${SD}/fetch-results-local.sh ${HOST} ${USER} ${SD} ${RUN_TYPE} "${ACTOR}" "${RUN_LABEL}" "${DOCKER_IMG}"
- name: Authorize GCloud Credentials
uses: google-github-actions/auth@v1
uses: google-github-actions/auth@v2
with:
credentials_json: ${{secrets.BENCHMARK_GCLOUD}}

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

- name: Upload Benchmark Results to GCloud
uses: google-github-actions/upload-cloud-storage@v1
uses: google-github-actions/upload-cloud-storage@v2
with:
path: ${{env.RUN_TYPE}}
destination: deephaven-benchmark
Expand All @@ -173,7 +173,7 @@ jobs:
${SD}/run-publish-local.sh ${RUN_TYPE} "${{secrets.BENCHMARK_SLACK_CHANNEL}}" "${{secrets.BENCHMARK_SLACK_TOKEN}}"
- name: Archive Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Benchmarks and Logs
path: |
Expand Down

0 comments on commit 27e0031

Please sign in to comment.