Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0756542
Refactor error handling and improve test logging for installers (#989)
chiranjib-swain Apr 13, 2026
c76542e
chore: upgrade dependencies (@actions/core, cache, glob, http-client,…
Copilot Apr 15, 2026
b622de1
Add Oracle JDK 17 licensing limitation note (#1001)
mahabaleshwars Apr 15, 2026
307d3a2
update readme for ubuntu sudo java_home behavior (#1013)
mahabaleshwars Jun 8, 2026
576b821
Merge pull request #674 from gdams/alpine
gdams Jun 12, 2026
1071fc1
fix: resolve npm audit vulnerabilities in fast-xml-builder and fast-x…
gdams Jun 12, 2026
662bb59
Bump @typescript-eslint/eslint-plugin from 8.35.1 to 8.46.2 (#952)
dependabot[bot] Jun 12, 2026
1756ab6
Bump eslint-config-prettier from 8.10.0 to 10.1.8 (#881)
dependabot[bot] Jun 12, 2026
039af37
Bump picomatch, @types/jest, jest, jest-circus and ts-jest (#1016)
dependabot[bot] Jun 12, 2026
ad9d6a6
Bump @types/node from 24.1.0 to 25.9.3 (#950)
dependabot[bot] Jun 12, 2026
43120bc
Implement pagination with link headers for Adoptium based apis (#1014)
johnoliver Jun 12, 2026
b24df5b
Make the Adoptopenjdk package type look at the Temurin repo first for…
johnoliver Jun 12, 2026
ad2b381
Bump @vercel/ncc from 0.38.1 to 0.44.0 (#1018)
dependabot[bot] Jun 16, 2026
f300429
Bump @typescript-eslint/parser from 8.48.0 to 8.61.1 (#1021)
dependabot[bot] Jun 16, 2026
c9b6aee
Fix codeql workflow permissions (#993)
jsoref Jun 17, 2026
bc52a13
fix CodeQL permissions (#1025)
gdams Jun 17, 2026
baa1691
fix: reject non-semver candidate versions in isVersionSatisfies (#1009)
sproctor Jun 18, 2026
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: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ on:

jobs:
call-codeQL-analysis:
permissions:
actions: read
contents: read
security-events: write
name: CodeQL analysis
uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main
26 changes: 26 additions & 0 deletions .github/workflows/e2e-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,32 @@ jobs:
run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}"
shell: bash

setup-java-alpine-linux:
name: ${{ matrix.distribution }} ${{ matrix.version }} (jdk-x64) - alpine-linux - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
container:
image: alpine:latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
distribution: ['temurin', 'sapmachine']
version: ['21', '17']
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install bash
run: apk add --no-cache bash
- name: setup-java
uses: ./
id: setup-java
with:
java-version: ${{ matrix.version }}
distribution: ${{ matrix.distribution }}
- name: Verify Java
run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}"
shell: bash

setup-java-major-minor-versions:
name: ${{ matrix.distribution }} ${{ matrix.version }} (jdk-x64) - ${{ matrix.os }}
needs: setup-java-major-versions
Expand Down
3 changes: 2 additions & 1 deletion .licensed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ allowed:

reviewed:
npm:
- "@actions/http-client" # MIT (license text present), but detected as "other"
- "@actions/http-client" # MIT (license text present), but detected as "other"
- "argparse" # Python Software Foundation License (PSF), but detected as "other"
2 changes: 1 addition & 1 deletion .licenses/npm/@actions/cache.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 0 additions & 20 deletions .licenses/npm/@actions/core-1.11.1.dep.yml

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 0 additions & 20 deletions .licenses/npm/@actions/exec-1.1.1.dep.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .licenses/npm/@actions/glob.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 0 additions & 32 deletions .licenses/npm/@actions/http-client-2.2.3.dep.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .licenses/npm/@actions/io-1.1.3.dep.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .licenses/npm/@actions/tool-cache.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 0 additions & 30 deletions .licenses/npm/@fastify/busboy.dep.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .licenses/npm/@nodable/entities.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .licenses/npm/@oozcitak/dom.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .licenses/npm/@oozcitak/infra.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .licenses/npm/@oozcitak/url.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .licenses/npm/@oozcitak/util.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 0 additions & 32 deletions .licenses/npm/@types/node.dep.yml

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading