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

chore(github-actions): bump burrunan/gradle-cache-action from 1 to 2 #28

Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Create Dockerfile and context
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: build-server
arguments: --scan outputVersion docker-server-slim:prepareDocker docker-server:prepareDockerAll
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Create Dockerfile and context
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: build-web
arguments: --scan outputVersion docker-web-plugin-packager:prepareDocker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
cat gradle.properties

- name: Check
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: checks
arguments: --scan --continue check
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
cat gradle.properties

- name: All Javadoc
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: allJavadoc
arguments: --scan outputVersion combined-javadoc:allJavadoc
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
cat gradle.properties

- name: Run typedoc on JS API
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: typedoc
arguments: --scan outputVersion :web-client-api:types:typedoc
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
cat gradle.properties

- name: Generate Python Docs
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: pythonDocs
arguments: --scan outputVersion sphinx:pythonDocs sphinx:pydeephavenDocs
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
cat gradle.properties

- name: Generate C++ Docs
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: cppDocs
arguments: --scan outputVersion sphinx:cppClientDocs sphinx:cppExamplesDocs
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
cat gradle.properties

- name: Generate R Docs
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: rDocs
arguments: --scan outputVersion R:rClientSite
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
cat gradle.properties

- name: Run gradle ${{ matrix.gradle-task }} on java ${{ matrix.test-jvm-version }}
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: gradle-run
arguments: --scan --continue --rerun-tasks ${{ matrix.gradle-task }} -PtestRuntimeVersion=${{ matrix.test-jvm-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-image-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cat gradle.properties

- name: Run gradle
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: image-compare
arguments: --continue pullImage compareImage
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:

- name: Build all artifacts, publish to Maven Local
if: ${{ !startsWith(github.ref, 'refs/heads/release/v') }}
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: publish-local
arguments: server-netty-app:build server-jetty-app:build py-server:build py-embedded-server:build py-client:build py-client-ticking:build web-client-api:types:build publishToMavenLocal
gradle-version: wrapper

- name: Build all artifacts, publish to Sonatype for staging to Maven Central
if: ${{ startsWith(github.ref, 'refs/heads/release/v') }}
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: publish
# We need to be explicit here about no parallelism to ensure we don't create disjointed staging repositories.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quick-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cat gradle.properties

- name: Quick Task
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: quick-task
# Even though quick includes spotlessCheck, we want to make sure it runs first and fails ASAP for quick feedback
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-base-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Create Crane scripts
uses: burrunan/gradle-cache-action@v1
uses: burrunan/gradle-cache-action@v2
with:
job-id: crane-scripts
arguments: createCraneTagScript
Expand Down
Loading