We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e031b6 commit 1917febCopy full SHA for 1917feb
.github/workflows/build-and-publish.yml
@@ -5,25 +5,22 @@ on: [ push ]
5
jobs:
6
build:
7
runs-on: ubuntu-latest
8
- strategy:
9
- matrix:
10
- dotnet-version: [ '8.x.x' ]
11
12
steps:
13
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
14
15
- name: Setup .NET
16
- uses: actions/setup-dotnet@v3
+ uses: actions/setup-dotnet@v4
17
with:
18
- dotnet-version: ${{ matrix.dotnet-version }}
+ dotnet-version: '8.x.x'
19
20
- name: Setup Node
21
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
22
23
node-version: 20
24
25
- name: Install pnpm
26
- run: npm i -g pnpm@8
+ run: npm i -g pnpm@9
27
28
- name: Install dependencies
29
run: dotnet restore
0 commit comments