Skip to content

Commit e24654a

Browse files
authored
Merge pull request #291 from fsprojects/repo-assist/eng-update-ci-actions-2026-03-17-59dea1679211558a
[Repo Assist] CI: upgrade GitHub Actions — checkout v4, setup-node v4, Node 20
2 parents 0761f5d + f3a1494 commit e24654a

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)