Skip to content

Commit d6c7daa

Browse files
authored
Merge pull request #688 from dscho/switch-to-node20
Switch to node20
2 parents 49dc2f1 + 9db2ee5 commit d6c7daa

File tree

8 files changed

+10561
-8121
lines changed

8 files changed

+10561
-8121
lines changed

.github/workflows/npm-run-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: github.event_name == 'workflow_dispatch' || github.event.repository.owner.login == 'git-for-windows'
1818
environment: git-for-windows-ci-push
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
with:
2222
repository: ${{ github.event.repository.full_name }}
2323
ref: ${{ inputs.branch }}${{ github.event.ref }}

.github/workflows/release-tag.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
name: Publish GitHub Release from tag
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
with:
1818
token: ${{ secrets.PUSH_RELEASE_TRAINS_PAT }}
1919
fetch-depth: 0
2020
- name: Import public GPG keys to verify the tag
21-
uses: actions/github-script@v3
21+
uses: actions/github-script@v7
2222
with:
2323
github-token: ${{secrets.GITHUB_TOKEN}}
2424
script: |
@@ -66,7 +66,7 @@ jobs:
6666
git cat-file tag "$GITHUB_REF" | sed -e '1,/^$/d' -e '/-----BEGIN PGP SIGNATURE-----/,$d' >body
6767
- name: Create Release
6868
if: github.repository_owner == 'git-for-windows'
69-
uses: actions/github-script@v3
69+
uses: actions/github-script@v7
7070
with:
7171
github-token: ${{secrets.GITHUB_TOKEN}}
7272
script: |

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build: # make sure build/ci work properly
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- run: npm ci
1717
- run: npm run build
1818
- run: npm run lint
@@ -36,7 +36,7 @@ jobs:
3636
test: # make sure the action works on a clean machine without building
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v4
4040
- name: Run this Action in-place
4141
uses: ./
4242
with:
@@ -49,8 +49,8 @@ jobs:
4949
test-strip-prefix: # make sure the action works on a clean machine without building
5050
runs-on: windows-latest
5151
steps:
52-
- uses: actions/checkout@v2
53-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v4
5454
with:
5555
repository: microsoft/vcpkg
5656
path: compat/vcbuild/vcpkg

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ inputs:
3333
description: 'Filter results by the reason for the build; Defaults to "all"'
3434
default: 'all'
3535
runs:
36-
using: 'node16'
36+
using: 'node20'
3737
main: 'dist/index.js'

0 commit comments

Comments
 (0)