Skip to content

Commit e7f2c65

Browse files
authored
Merge pull request #329 from adoptium/dependabot/github_actions/actions/setup-java-5.5.0
build(deps): bump actions/setup-java from 5.2.0 to 5.5.0
2 parents ec28c1c + 900fe72 commit e7f2c65

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/sanity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
buildlist: [openjdk, functional]
2222
steps:
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24-
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
24+
- uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
2525
with:
2626
java-version: ${{ matrix.version }}
2727
distribution: ${{ matrix.impl }}

.github/workflows/test.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,17 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
image: [adoptopenjdk/alpine3_build_image]
16+
image: [eclipse-temurin:8-jdk-alpine]
1717
steps:
18+
- name: Install build tools
19+
run: |
20+
apk add --no-cache bash git make perl curl
21+
ANT_VERSION=1.10.15
22+
wget "https://archive.apache.org/dist/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz" -O "/tmp/apache-ant-${ANT_VERSION}-bin.tar.gz"
23+
wget "https://archive.apache.org/dist/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz.sha512" -O "/tmp/apache-ant-${ANT_VERSION}-bin.tar.gz.sha512"
24+
cd /tmp && echo "$(tr -d '[:space:]' < apache-ant-${ANT_VERSION}-bin.tar.gz.sha512) apache-ant-${ANT_VERSION}-bin.tar.gz" | sha512sum -c -
25+
tar -xzf "/tmp/apache-ant-${ANT_VERSION}-bin.tar.gz" -C /opt
26+
ln -sf /opt/apache-ant-${ANT_VERSION}/bin/ant /usr/local/bin/ant
1827
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1928
- name: AQA
2029
uses: ./
@@ -33,7 +42,7 @@ jobs:
3342
image: ['ghcr.io/adoptium/test-containers:ubuntu2204']
3443
steps:
3544
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36-
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
45+
- uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
3746
with:
3847
java-version: '17'
3948
distribution: 'temurin'

0 commit comments

Comments
 (0)