Skip to content

Commit

Permalink
updated GitHub actions to address Node 16 deprecation (#360)
Browse files Browse the repository at this point in the history
* updated `actions/checkout` to `v4`

* updated `microsoft/setup-msbuild` to `v2`
  • Loading branch information
firewave authored Jul 20, 2024
1 parent 8df5a54 commit 74273cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI-unixish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
CXX: ${{ matrix.compiler }}

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

- name: Install missing software on ubuntu
if: matrix.os == 'ubuntu-22.04'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Setup msbuild.exe
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2

- name: Run cmake
if: matrix.os == 'windows-2019'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04

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

- name: Install missing software
run: |
Expand Down

0 comments on commit 74273cd

Please sign in to comment.