Skip to content

Commit

Permalink
ci: Update actions/checkout to v4 from v3.
Browse files Browse the repository at this point in the history
This updates internally to using Node 20 and removes some deprecation
notices within the GitHub Actions UI about Node 16 being deprecated.
  • Loading branch information
waywardmonkeys committed Feb 29, 2024
1 parent e2f9497 commit 7771ee7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

# See design.mps.tests.ci.run.posix.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: CC=${{ matrix.compiler }} ./configure
- run: make
- run: make test
Expand All @@ -59,7 +59,7 @@ jobs:
# <https://github.com/actions/runner-images/blob/e6fcf60b8e6c0f80a065327eaefe836881c28b68/images/win/Windows2022-Readme.md?plain=1#L215>.

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
cd code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fixme-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
check-fixme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: tool/check-fixme
2 changes: 1 addition & 1 deletion .github/workflows/rst-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
check-rst:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install docutils
run: sudo apt-get install -y docutils
- name: Check reStructuredText syntax
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shell-script-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
check-shell-scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Check shell scripts
Expand Down

0 comments on commit 7771ee7

Please sign in to comment.