Skip to content

Commit 82bd117

Browse files
committed
Update GitHub actions for Node20
Required by GitHub Actions platform change.
1 parent 9e52474 commit 82bd117

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.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@v3
32+
- uses: actions/checkout@v4
3333

3434
- name: Set up JDK ${{ matrix.java }}
35-
uses: actions/setup-java@v3
35+
uses: actions/setup-java@v4
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
@@ -23,10 +23,10 @@ jobs:
2323
# Some tests require exactly-expected line endings
2424
- run: git config --global core.autocrlf input
2525

26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Set up JDK 8
29-
uses: actions/setup-java@v3
29+
uses: actions/setup-java@v4
3030
with:
3131
java-version: '8'
3232
distribution: 'temurin'
@@ -45,10 +45,10 @@ jobs:
4545
# Some tests require exactly-expected line endings
4646
- run: git config --global core.autocrlf input
4747

48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949

5050
- name: Set up JDK 11
51-
uses: actions/setup-java@v3
51+
uses: actions/setup-java@v4
5252
with:
5353
java-version: '11'
5454
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@v3
17+
- uses: actions/checkout@v4
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/launcher-test.yml

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

31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232

3333
- name: Set up JDK 8
34-
uses: actions/setup-java@v3
34+
uses: actions/setup-java@v4
3535
with:
3636
java-version: '8'
3737
distribution: 'temurin'

0 commit comments

Comments
 (0)