Skip to content

Commit cb3fccf

Browse files
committed
Update GitHub Actions to use latest checkout and setup-dotnet actions
1 parent cac15ff commit cb3fccf

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Build test and pack
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66

77
pull_request:
8-
branches: [ "main" ]
8+
branches: ["main"]
99

1010
jobs:
1111
build:
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v4
20+
uses: actions/setup-dotnet@v5
2121
with:
2222
dotnet-version: 9.0.x
2323

.github/workflows/nuget-publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@ on:
1818
# Input has to be provided for the workflow to run
1919
required: true
2020

21-
2221
jobs:
2322
build:
2423
name: Build, Test, Pack, Publish
2524
runs-on: ubuntu-latest
2625
steps:
2726
- name: Checkout
28-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2928

3029
- name: Setup .NET
31-
uses: actions/setup-dotnet@v4
30+
uses: actions/setup-dotnet@v5
3231
with:
3332
dotnet-version: 9.0.x
3433

0 commit comments

Comments
 (0)