Skip to content

Commit f3a1494

Browse files
github-actions[bot]Copilot
authored andcommitted
chore: upgrade GitHub Actions (checkout v4, setup-node v4, Node 20)
- actions/checkout@v2 → @v4: picks up performance/security improvements and works correctly with modern runners - actions/setup-node@v2.4.0 → @v4 in pull-request.yml - Node.js 14.17.* → '20': Node 14 reached end-of-life in April 2023; Node 20 is the current LTS release - actions/checkout@v2 → @v4 in publish.yml Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 7319e42 commit f3a1494

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v4.3.1
1515
with:

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Setup .NET
1313
uses: actions/setup-dotnet@v4.3.1
1414
with:
1515
dotnet-version: '8.0.x'
1616
- name: Setup Node.js environment
17-
uses: actions/setup-node@v2.4.0
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: 14.17.*
19+
node-version: '20'
2020
- name: Install tools
2121
run: dotnet tool restore
2222
- name: Build and Test

0 commit comments

Comments
 (0)