Skip to content

Commit 465bfcf

Browse files
authored
Upgrade the image to the latest version (#6562)
1 parent e55e5e2 commit 465bfcf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.asf.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ github:
4242
contexts:
4343
- misspell-check
4444
- check-license
45+
- maven-compile (ubuntu-latest, JDK-8)
46+
- maven-compile (windows-latest, JDK-8)
47+
- maven-compile (macos-latest, JDK-8)
4548
notifications:
4649
4750

.github/workflows/maven.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ on:
77
jobs:
88
java_build:
99
name: "maven-compile (${{ matrix.os }}, JDK-${{ matrix.jdk }})"
10-
runs-on: ubuntu-latest
10+
runs-on: ${{ matrix.os }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ubuntu-18.04, windows-2022, macos-11]
14+
# see https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
15+
os: [ubuntu-latest, windows-latest, macos-latest]
1516
jdk: [8]
1617
steps:
1718
- name: Checkout

0 commit comments

Comments
 (0)