File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121jobs :
2222 build :
2323
24- # runs-on: ubuntu-latest
25- runs-on : macos-15
26-
24+ strategy :
25+ fail-fast : true
26+ matrix :
27+ os : # see https://docs.github.com/en/actions/reference/runners/github-hosted-runners
28+ - ubuntu-latest
29+ - macos-26-intel
30+ - macos-latest # ARM
31+ - windows-latest
32+ runs-on : ${{ matrix.os }}
33+ timeout-minutes : 20
34+
2735 steps :
2836 - name : Check out
2937 uses : actions/checkout@v4
3038
3139 - name : Set up JDK 21
32- uses : actions/setup-java@v4
40+ uses : actions/setup-java@v5 # see https://github.com/actions/setup-java
3341 with :
3442 java-version : ' 21'
3543 distribution : ' temurin'
4351 # uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
4452
4553 deploy :
46- runs-on : macos-15
54+ runs-on : ubuntu-latest
4755 needs : build
4856 if : github.ref_name == 'develop'
4957 permissions :
5563 uses : actions/checkout@v4
5664
5765 - name : Set up JDK 21
58- uses : actions/setup-java@v4
66+ uses : actions/setup-java@v5
5967 with :
6068 java-version : ' 21'
6169 distribution : ' temurin'
You can’t perform that action at this time.
0 commit comments