Skip to content

Commit dbbf597

Browse files
Upgraded Actions in workflows (#72)
* Update Github Actions in nuget.yml v3 is throwing deprecation warnings * Update Github Actions in main.yml Older versions of the Actions were throwing deprecation warnings. --------- Co-authored-by: bgijzen <[email protected]>
1 parent d6b2d46 commit dbbf597

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: Build and test
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Setup .NET
16-
uses: actions/setup-dotnet@v2
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: |
1919
6.0.x

.github/workflows/nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Setup .NET
15-
uses: actions/setup-dotnet@v3
15+
uses: actions/setup-dotnet@v4
1616
with:
1717
dotnet-version: |
1818
6.0.x

0 commit comments

Comments
 (0)