Skip to content

Commit b25a486

Browse files
Merge pull request #11 from Flow-Launcher/upgrade_workflows
Upgrade workflow version
2 parents 3b4d1ba + be34ab4 commit b25a486

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
runs-on: windows-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v5
1313
- name: Setup .NET
14-
uses: actions/setup-dotnet@v3
14+
uses: actions/setup-dotnet@v4
1515
with:
1616
dotnet-version: 7.0.x
1717
- name: Restore dependencies
1818
run: dotnet restore
1919
- name: Build
2020
run: dotnet build --no-restore -c Release
2121
- name: Upload Artifact
22-
uses: actions/upload-artifact@v2
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: QuickLook
2525
path: ./Output/Release/Flow.Launcher.Plugin.QuickLook

.github/workflows/publish-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
publish:
1313
runs-on: windows-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v5
1616
- name: Setup .NET
17-
uses: actions/setup-dotnet@v3
17+
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: '7.0.x'
2020
- name: get version
@@ -29,7 +29,7 @@ jobs:
2929
dotnet publish 'Flow.Launcher.Plugin.QuickLook.csproj' -r win-x64 -c Release -o "QuickLook-${{steps.version.outputs.prop}}"
3030
7z a -tzip "QuickLook-${{steps.version.outputs.prop}}.zip" "./QuickLook-${{steps.version.outputs.prop}}/*"
3131
- name: Publish
32-
uses: softprops/action-gh-release@v1
32+
uses: softprops/action-gh-release@v2
3333
with:
3434
files: "QuickLook*"
3535
tag_name: "v${{steps.version.outputs.prop}}"

0 commit comments

Comments
 (0)