dependabot[bot]
8db439b6b4
Bump ws from 7.4.3 to 7.5.5 ( #228 )
...
Bumps [ws](https://github.com/websockets/ws ) from 7.4.3 to 7.5.5.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/7.4.3...7.5.5 )
---
updated-dependencies:
- dependency-name: ws
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-29 12:57:51 +03:00
dependabot[bot]
e39cf0ebdc
Bump tmpl from 1.0.4 to 1.0.5 ( #234 )
...
Bumps [tmpl](https://github.com/daaku/nodejs-tmpl ) from 1.0.4 to 1.0.5.
- [Release notes](https://github.com/daaku/nodejs-tmpl/releases )
- [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5 )
---
updated-dependencies:
- dependency-name: tmpl
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-29 12:54:43 +03:00
dependabot[bot]
770ccdbc4b
Bump ansi-regex from 5.0.0 to 5.0.1 ( #235 )
...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex ) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/chalk/ansi-regex/releases )
- [Commits](https://github.com/chalk/ansi-regex/compare/v5.0.0...v5.0.1 )
---
updated-dependencies:
- dependency-name: ansi-regex
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-29 12:52:58 +03:00
dependabot[bot]
6a258a9690
Bump path-parse from 1.0.6 to 1.0.7 ( #227 )
...
Bumps [path-parse](https://github.com/jbgutierrez/path-parse ) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases )
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7 )
---
updated-dependencies:
- dependency-name: path-parse
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-29 12:48:56 +03:00
mikhailshaganov
7ac3cd263f
Prints error message encountered in cleanup-java ( #220 )
2021-09-24 12:53:06 +03:00
BJ Hargrave
d34438b137
cleanup: Use --delete-secret-and-public-key to delete GPG_PRIVATE_KEY ( #226 )
...
This deletes the secret key(s) and public keys(s) for the fingerprint
of the installed GPG_PRIVATE_KEY.
If the installed GPG_PRIVATE_KEY only contains a signing subkey without
the primary private key, the --delete-secret-and-public-key will
successfully delete the keys.
Signed-off-by: BJ Hargrave <bj@hargrave.dev>
2021-09-22 11:39:53 +03:00
Pavel Krulec
61c179a6ef
Bump http-client version (actions#221) ( #222 )
2021-09-14 15:04:11 +03:00
Kengo TODA
68c162b39c
docs: append --no-daemon option for Windows user ( #218 )
...
To cache deps successfully even on Windows, it's better to add `--no-daemon` option
to the Gradle build, or the save process will fail due to 'permission denied' error.
refs https://github.com/actions/cache/issues/454
2021-09-13 12:53:49 +03:00
Brian Cristante
b02a10773f
Create check-dist.yml ( #212 )
2021-09-13 12:52:18 +03:00
Kengo TODA
6df0b04fb5
build: remove the config for husky
...
husky has been removed by 980efe8
at 2019 Nov.
2021-09-10 07:53:56 +08:00
Daniel Kraus
a1ad2000b3
Describe cache key format in readme
2021-08-31 21:42:01 +02:00
MaksimZhukov
3bc31aaf88
Merge pull request #210 from dmitry-shibanov/v-dmshib/suppress-test-log-output
...
Suppress warning/debug/info output from tests
2021-08-23 14:47:51 +03:00
Dmitry Shibanov
30cd52e29b
fix warning output in cleanup-java
2021-08-23 11:54:48 +03:00
Dmitry Shibanov
2e40ee8132
suppress tests log output
2021-08-23 11:31:06 +03:00
Maxim Lobanov
c21fb9392d
Update readme and test matrix ( #209 )
2021-08-23 11:09:55 +03:00
Oscar Dominguez
faa22ddfbc
style(workflows): restore single quote strings
2021-08-22 15:51:45 +02:00
Kengo TODA
08e4e813b8
Introduce the dependency caching for Maven and Gradle ( #193 )
...
* implement a core logic to cache dependnecies
* integrate the cache logic to entry points
* add a user doc about the dependency cache feature
* reflect changes to the dist dir
* add a prefix to the cache key
https://github.com/actions/setup-java/pull/193/files#r669521434
* test: extract build.gradle to a file in __tests__ dir
* run the restore e2e test on the specified OS
* add an e2e test for maven
* fix the dependency among workflows
* stabilize the cache on the Windows in e2e test
* add .gitignore files to __tests__/cache directories
* try to run restore after the authentication
* use the key in state to save caches in the post process
* suggest users to run without daemon if fail to save Gradle cache on Windows
* add missing description in the README.md
* run clean-up tasks in serial
* Add validation for post step (#3 )
* work on fixing cache post step
* fix tests
* Update src/cleanup-java.ts
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
* Update src/cache.ts
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
* style: put the name of input to the constants.ts
* format: run `npm run build` to reflect changes to the dist dir
* chore: update licensed files by `licensed cache`
it still has three errors as follows:
>* setup-java.npm.sax
> filename: /Users/kengo/GitHub/setup-java/.licenses/npm/sax.dep.yml
> - license needs review: other
>
>* setup-java.npm.tslib-1.14.1
> filename: /Users/kengo/GitHub/setup-java/.licenses/npm/tslib-1.14.1.dep.yml
> - license needs review: 0bsd
>
>* setup-java.npm.tslib-2.3.0
> filename: /Users/kengo/GitHub/setup-java/.licenses/npm/tslib-2.3.0.dep.yml
> - license needs review: 0bsd
* fix: rerun ncc on macOS with node v12
* build: follow the suggestion at PR page
https://github.com/actions/setup-java/pull/193#issuecomment-901839546
* fix: throw error in case of no package manager file found
Co-authored-by: Dmitry Shibanov <dmitry-shibanov@github.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
2021-08-19 20:19:35 +03:00
Jochen Schalanda
4b1b3d4a82
Add support for Eclipse Temurin ( #201 )
...
* Add support for Adoptium OpenJDK
Refs https://github.com/actions/setup-java/issues/191
* Rename distribution to Eclipse Temurin
* Update end-to-end tests in GitHub workflows
* Exclude e2e tests for Temurin JREs for now
* fix version
* Update e2e-versions.yml
* Handle Eclipse Temurin version suffixes ("beta")
* Add test for new version suffix "beta"
* Add updated `index.js`
* fix an issue
Co-authored-by: Maxim Lobanov <maxim-lobanov@github.com>
2021-08-06 13:12:36 +03:00
Oscar Dominguez
a388b3faf4
ci(workflow): add 'npm' cache for actions/setup-node in .github/workflows
2021-07-18 22:16:32 +02:00
MaksimZhukov
ad01d131cc
Automate releasing new versions of the "setup-java" action ( #182 )
...
* Automate releasing new versions of the setup-java action
* Use permissions as a top-level key
Co-authored-by: MaksimZhukov <v-mazhuk@microsoft.com>
2021-05-27 17:28:08 +03:00
dependabot[bot]
d9126d7df2
Bump hosted-git-info from 2.8.8 to 2.8.9 ( #178 )
...
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info ) from 2.8.8 to 2.8.9.
- [Release notes](https://github.com/npm/hosted-git-info/releases )
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md )
- [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-05-17 16:38:14 +03:00
Marcono1234
53ac717e09
Improve README and advanced usage guide ( #174 )
2021-05-17 16:38:02 +03:00
Marcel
cbc183b1c1
Added 'adopt-hotspot' and 'adopt-openj9' ( #155 )
...
* Added 'adopt-hotspot' and 'adopt-openj9'
* Fixed adopt toolchain folder
2021-05-17 16:33:21 +03:00
Dmitry Shibanov
0443912ed7
Fix typo in documentation "jdkfile" ( #167 )
2021-04-14 11:33:57 +03:00
Manuel
56b2808da7
Fix typo on distribution "jdkfile" ( #163 )
...
Its jdkfile and not "jdkFile", see b53500dabc/src/distributions/distribution-factory.ts (L10)
2021-04-12 20:14:22 +03:00
Dmitry Shibanov
00401c4488
add cron for e2e tests, twice a day ( #162 )
2021-04-12 11:08:05 +03:00
Nuh Koca
1e063f2878
Fix navigation issue of supported distributions ( #153 )
2021-04-05 17:59:08 +03:00
Maxim Lobanov
8764a52df1
Rename v2-preview to v2 in docs and tests ( #151 )
2021-04-05 13:14:38 +03:00
Maxim Lobanov
b53500dabc
Merge "v2-preview" branch into "main" ( #150 )
...
* actions/setup-java@v2 - Support different distributions (#132 )
* Implement support for custom vendors in setup-java
* minor improvements
* minor refactoring
* Add unit tests and e2e tests
* Update documentation for setup-java@v2 release
* minor improvements
* regenerate dist
* fix comments
* resolve comments
* resolve comments
* fix tests
* Update README.md
Co-authored-by: George Adams <george.adams@microsoft.com>
* Apply suggestions from code review
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
* fix minor nitpicks
* handle 4th digit
* pull latest main
* Update README.md
* rename adoptium to adopt
* rename adoptium to adopt
* rename adoptium to adopt
* Update README.md
* make java-version and distribution required for action
* update readme
* fix tests
* fix e2e tests
Co-authored-by: George Adams <george.adams@microsoft.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
* Add "overwrite-settings" input parameter (#136 )
* add overwrite-settings parameter
* fix e2e tests
* print debug
* fix e2e tests
* add comment
* remove comment
* Add "Contents/Home" postfix on macOS if provider creates it (#139 )
* Update e2e-versions.yml
* Update e2e-versions.yml
* implement fix
* Update e2e-versions.yml
* Update installer.ts
* fix filter logic
* Update e2e-versions.yml
* remove extra logic
* Update e2e-versions.yml
* Add check-latest flag (#141 )
* add changes for check-latest
* run prerelease script
* resolving comments
* fixing tests
* fix spelling
* improve core.info messages
* run format
* run prerelease
* change version to fix test
* resolve comment for check-latest
* Update README.md
* added hosted tool cache section
* Apply suggestions from code review
Co-authored-by: Maxim Lobanov <v-malob@microsoft.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
* Avoid "+" sign in Java path in v2-preview (#145 )
* try to handle _ versions
* more logs
* more debug
* test 1
* more fixes
* fix typo
* Update e2e-versions.yml
* add unit-tests
* remove debug info from tests
* debug pre-cached versions
* change e2e tests to ubuntu-latest
* update npm licenses
Co-authored-by: George Adams <george.adams@microsoft.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
Co-authored-by: Dmitry Shibanov <dmitry-shibanov@github.com>
2021-04-05 13:02:27 +03:00
Maxim Lobanov
ebb424f2cb
Beatify "main" warning about breaking changes ( #144 )
...
* add warning
* Update src/setup-java.ts
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
* Update index.js
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
2021-03-22 12:05:47 +03:00
Maxim Lobanov
9c7940b9c6
Add breaking change warning to 'main' branch ( #138 )
...
* add warning
* Update src/setup-java.ts
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
2021-03-22 11:06:35 +03:00
Konrad Pabjan
fc62ccaa4f
V2 setup-java ADR ( #97 )
...
* V2 setup-java initial ADR
* Update ADR
* Misc fixes
* Clarifications around default behavior and new input
* PR feedback
2021-03-08 12:38:33 -05:00
Maxim Lobanov
e73e96a93b
Merge pull request #131 from actions/v-malob/update-codeowners
...
Add @actions/virtual-environments-owners to CODEOWNERS file
2021-03-05 09:36:36 +03:00
Maxim Lobanov
ea31b1d738
Update CODEOWNERS
2021-03-04 21:22:42 +03:00
Maxim Lobanov
ff0054dfbf
Merge pull request #123 from dmitry-shibanov/fix-documentation-for-gpg-import-export
...
Fix documentation for GPG
2021-02-17 11:13:48 +03:00
Dmitry Shibanov
81290cdb8c
change imported to exported
2021-02-16 18:12:46 +03:00
Maxim Lobanov
546dae7e87
Merge pull request #122 from dmitry-shibanov/update-docs-for-maven-and-gpg
...
Add notes about maven extra configuration and gpg key.
2021-02-15 12:03:32 +03:00
Dmitry Shibanov
4d656d0138
work on resolving comments
2021-02-15 10:22:04 +03:00
Dmitry Shibanov
719bcb4f94
resolve comments
2021-02-12 16:16:23 +03:00
Dmitry Shibanov
661c4c13b4
update docs to notes about maven and gpg
2021-02-12 12:26:52 +03:00
Maxim Lobanov
2fac83dd2d
Merge pull request #121 from dmitry-shibanov/restrict-blank-issues
...
Restrict blank issues
2021-02-10 17:30:29 +03:00
Dmitry Shibanov
fbe6d87076
add bug to labels
2021-02-10 16:58:41 +03:00
Dmitry Shibanov
371353f882
fix label creation
2021-02-10 12:49:56 +03:00
Dmitry Shibanov
5222f725dd
restrict create blank issue
2021-02-10 12:08:43 +03:00
Maxim Lobanov
089d28c90b
Merge pull request #119 from vsafonkin/v-vlsafo/issue-pr-templates
...
Add issue and pull request templates
2021-02-05 11:24:44 +03:00
Vladimir Safonkin
552366fa8e
Add issue and pr templates
2021-02-05 09:44:08 +03:00
Brian Cristante
61c9e3a719
CODEOWNERS needs the org name for teams ( #118 )
2020-12-07 15:59:00 -05:00
Brian Cristante
e3619375bd
Create CODEOWNERS ( #115 )
2020-11-25 16:09:07 -05:00
Thomas Boop
d202f5dbf7
Swap to Environment Files ( #104 )
...
* Add Licensed workflow and config files
* Manually validate dependencies
* Swap to Environment Files
2020-09-30 15:51:22 +02:00
Thomas Boop
11790a2d66
Add Licensed
To Help Verify Prod Licenses ( #88 )
...
* Add Licensed workflow and config files
* Manually validate dependencies
* Ignore Generated Files in Git PR's
* update contributing.md
2020-09-23 23:23:32 +02:00