diff options
| author | Jacob Ronstadt <[email protected]> | 2024-03-05 17:30:57 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-05 17:30:57 -0800 |
| commit | bcc5c139181f66514b6767238f850f5b2d3aabd1 (patch) | |
| tree | 3b7e1af994cadc0a2fe29c1733e3063953dd566b | |
| parent | c7ef047d05ca856a04fe542739ea99d28913ae6e (diff) | |
Update jobs to use Node.js 20 (#1134)
* Update Code-Scanning.yml actions/checkout to v4 and microsoft/setup-msbuild to v2
* Update ci-pr.yml to use node20
* Update ci.yml to use node20
| -rw-r--r-- | .github/workflows/Code-Scanning.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/ci-pr.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/Code-Scanning.yml b/.github/workflows/Code-Scanning.yml index 6915addf..a18bcf95 100644 --- a/.github/workflows/Code-Scanning.yml +++ b/.github/workflows/Code-Scanning.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'recursive' @@ -43,7 +43,7 @@ jobs: languages: ${{ matrix.language }} packs: microsoft/windows-drivers - name: Add MSBuild to PATH - uses: microsoft/[email protected] + uses: microsoft/setup-msbuild@v2 - name: Retrieve and build all available solutions run: | diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index fd2b78a6..7640b966 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -18,12 +18,12 @@ jobs: runs-on: windows-2022 steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'recursive' - name: Add MSBuild to PATH - uses: microsoft/[email protected] + uses: microsoft/setup-msbuild@v2 - name: Get changed files id: get-changed-files @@ -54,7 +54,7 @@ jobs: if: always() steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Retrieve overview reports uses: actions/download-artifact@v3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4fd1a2a..ad92f83b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,12 @@ jobs: runs-on: windows-2022 steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'recursive' - name: Add MSBuild to PATH - uses: microsoft/[email protected] + uses: microsoft/setup-msbuild@v2 - name: Retrieve and build all available solutions run: | @@ -47,7 +47,7 @@ jobs: if: always() steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Retrieve overview reports uses: actions/download-artifact@v3 |
