Skip to content

Commit 1917feb

Browse files
committed
fix action
1 parent 1e031b6 commit 1917feb

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/build-and-publish.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,22 @@ on: [ push ]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8-
strategy:
9-
matrix:
10-
dotnet-version: [ '8.x.x' ]
118

129
steps:
13-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1411

1512
- name: Setup .NET
16-
uses: actions/setup-dotnet@v3
13+
uses: actions/setup-dotnet@v4
1714
with:
18-
dotnet-version: ${{ matrix.dotnet-version }}
15+
dotnet-version: '8.x.x'
1916

2017
- name: Setup Node
21-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
2219
with:
2320
node-version: 20
2421

2522
- name: Install pnpm
26-
run: npm i -g pnpm@8
23+
run: npm i -g pnpm@9
2724

2825
- name: Install dependencies
2926
run: dotnet restore

0 commit comments

Comments
 (0)