Skip to content

Commit 9ccbef3

Browse files
committed
Update versions of marketplace workflows (generally)
1 parent 5348e3d commit 9ccbef3

5 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/ant-javatest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
# Some tests require exactly-expected line endings
3030
- run: git config --global core.autocrlf input
3131

32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333

3434
- name: Set up JDK ${{ matrix.java }}
35-
uses: actions/setup-java@v4
35+
uses: actions/setup-java@v5
3636
with:
3737
java-version: ${{ matrix.java }}
3838
distribution: 'temurin'

.github/workflows/ant-regrtest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
# Some tests require exactly-expected line endings
2525
- run: git config --global core.autocrlf input
2626

27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

2929
- name: Set up JDK 8
30-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@v5
3131
with:
3232
java-version: '8'
3333
distribution: 'temurin'
@@ -47,10 +47,10 @@ jobs:
4747
# Some tests require exactly-expected line endings
4848
- run: git config --global core.autocrlf input
4949

50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151

5252
- name: Set up JDK 11
53-
uses: actions/setup-java@v4
53+
uses: actions/setup-java@v5
5454
with:
5555
java-version: '11'
5656
distribution: 'temurin'

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
- run: pip install codespell
1919
- run: codespell --count --ignore-words=Misc/codespell/words.ignore
2020
NEWS README.md README.txt LICENSE.txt Misc/INDEX Misc/codespell/README

.github/workflows/java-versions-regrtest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,20 @@
33
# We expect this to fail (at the time of writing) and the purpose
44
# is to tell us on which OSes and versions of Java that happens.
55

6-
name: Java versions regrtest 2.7
6+
name: ant regrtest 2.7 matrix
77

88
# Only run manually as it takes quite a lot of cpu
99
on:
1010
push:
11+
branches: [ test-java-17-25 ]
1112
workflow_dispatch:
1213

1314
permissions:
1415
contents: read
1516

1617
jobs:
1718

18-
ant-regrtest:
19+
ant-regrtest-matrix:
1920
strategy:
2021
max-parallel: 2
2122
matrix:

.github/workflows/launcher-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
# Some tests require exactly-expected line endings
3030
- run: git config --global core.autocrlf input
3131

32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333

3434
- name: Set up JDK 11
35-
uses: actions/setup-java@v4
35+
uses: actions/setup-java@v5
3636
with:
3737
java-version: '11'
3838
distribution: 'temurin'

0 commit comments

Comments
 (0)