Skip to content

Commit

Permalink
Update GitHub actions for Node20
Browse files Browse the repository at this point in the history
Required by GitHub Actions platform change.
  • Loading branch information
jeff5 committed Jul 21, 2024
1 parent 9e52474 commit 82bd117
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ant-javatest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
# Some tests require exactly-expected line endings
- run: git config --global core.autocrlf input

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ant-regrtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
# Some tests require exactly-expected line endings
- run: git config --global core.autocrlf input

- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pip install codespell
- run: codespell --count --ignore-words=Misc/codespell/words.ignore
NEWS README.md README.txt LICENSE.txt Misc/INDEX Misc/codespell/README
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/launcher-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
# Some tests require exactly-expected line endings
- run: git config --global core.autocrlf input

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
Expand Down

0 comments on commit 82bd117

Please sign in to comment.