Skip to content

Commit 5c1f340

Browse files
Update actions/setup-dotnet and actions/upload-artifact to v4
1 parent a97a3a7 commit 5c1f340

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v4
1414
- name: Setup .NET SDK
15-
uses: actions/setup-dotnet@v3
15+
uses: actions/setup-dotnet@v4
1616
with:
1717
global-json-file: global.json
1818
- name: Setup node

.github/workflows/publish_prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@v4
1313
- name: Setup .NET SDK
14-
uses: actions/setup-dotnet@v3
14+
uses: actions/setup-dotnet@v4
1515
with:
1616
global-json-file: global.json
1717
- name: Write cert
@@ -37,7 +37,7 @@ jobs:
3737
NUGET_API_KEY_PROD: ${{ secrets.NUGET_API_KEY_PROD }}
3838
run: .\publish-prod.ps1
3939
- name: Archive packages
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: artifacts
4343
path: artifacts

.github/workflows/publish_stage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@v4
1313
- name: Setup .NET SDK
14-
uses: actions/setup-dotnet@v3
14+
uses: actions/setup-dotnet@v4
1515
with:
1616
global-json-file: global.json
1717
- name: Write cert
@@ -37,7 +37,7 @@ jobs:
3737
NUGET_API_KEY_STAGE: ${{ secrets.NUGET_API_KEY_STAGE }}
3838
run: .\publish-stage.ps1
3939
- name: Archive packages
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: artifacts
4343
path: artifacts

0 commit comments

Comments
 (0)