3 Commits

Author SHA1 Message Date
4f7fb9d967 Bump actions/setup-java from 4.5.0 to 4.6.0
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.5.0 to 4.6.0.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](8df1039502...7a6d8a8234)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-23 14:52:40 +01:00
31c80e7249 Add jdkFile (#2) 2024-12-15 12:49:50 +01:00
232c434257 Bump actions/cache from 4.1.2 to 4.2.0
Bumps [actions/cache](https://github.com/actions/cache) from 4.1.2 to 4.2.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](6849a64899...1bd1e32a3b)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-09 14:25:53 +01:00
2 changed files with 8 additions and 2 deletions

View File

@ -44,6 +44,7 @@ For default values you only need:
|-------------------|--------------|---------|
| java-version | java-version | 17 |
| java-distribution | distribution | zulu |
| java-jdkFile | jdkFile | |
## cache

View File

@ -60,6 +60,10 @@ inputs:
default: 'zulu'
required: false
java-jdkFile:
description: 'Java JDK compressed file location'
required: false
# cache
cache-enabled:
description: 'Enable cache'
@ -140,13 +144,14 @@ runs:
token: '${{ inputs.checkout-token }}'
ssh-key: '${{ inputs.checkout-ssh-key }}'
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b
with:
overwrite-settings: false
java-version: '${{ inputs.java-version }}'
distribution: '${{ inputs.java-distribution }}'
jdkFile: '${{ inputs.java-jdkFile }}'
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
if: inputs.cache-enabled == 'true'
with:
path: |