Skip to content

Commit

Permalink
chore(github-actions): bump burrunan/gradle-cache-action from 1 to 2
Browse files Browse the repository at this point in the history
Bumps [burrunan/gradle-cache-action](https://github.com/burrunan/gradle-cache-action) from 1 to 2.
- [Release notes](https://github.com/burrunan/gradle-cache-action/releases)
- [Changelog](https://github.com/burrunan/gradle-cache-action/blob/main/CHANGELOG.md)
- [Commits](burrunan/gradle-cache-action@v1...v2)

---
updated-dependencies:
- dependency-name: burrunan/gradle-cache-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Aug 19, 2024
1 parent f2b70b8 commit 51afe56
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
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

0 comments on commit 51afe56

Please sign in to comment.