Skip to content

Commit 5fe3cb1

Browse files
committed
pipeline fixes
1 parent 28c7ffb commit 5fe3cb1

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828

2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Setup .NET
34-
uses: actions/setup-dotnet@v4
34+
uses: actions/setup-dotnet@v5
3535
with:
3636
global-json-file: global.json
3737
cache: true
@@ -77,7 +77,7 @@ jobs:
7777
Compress-Archive -Path dist/$env:RID/* -DestinationPath AmigaRawImageConverter-$env:RID.zip -Force
7878
7979
- name: Upload artifact
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v6
8181
with:
8282
name: AmigaRawImageConverter-${{ matrix.rid }}
8383
path: AmigaRawImageConverter-${{ matrix.rid }}.zip

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929

3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333

3434
- name: Setup .NET
35-
uses: actions/setup-dotnet@v4
35+
uses: actions/setup-dotnet@v5
3636
with:
3737
global-json-file: global.json
3838
cache: true
@@ -78,7 +78,7 @@ jobs:
7878
Compress-Archive -Path dist/$env:RID/* -DestinationPath AmigaRawImageConverter-$env:RID.zip -Force
7979
8080
- name: Upload asset artifact
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v6
8282
with:
8383
name: release-asset-${{ matrix.rid }}
8484
path: AmigaRawImageConverter-${{ matrix.rid }}.zip
@@ -90,7 +90,7 @@ jobs:
9090

9191
steps:
9292
- name: Download assets
93-
uses: actions/download-artifact@v4
93+
uses: actions/download-artifact@v7
9494
with:
9595
path: release-assets
9696
merge-multiple: true

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.0",
3+
"version": "8.0",
44
"rollForward": "latestMinor",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)