Skip to content

Commit 91cd691

Browse files
committed
dotnet-ci.yml, release.yaml: update GHA versions
1 parent 62eb584 commit 91cd691

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/dotnet-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
submodules: true
3333

3434
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
3535
- name: Setup MSBuild.exe
36-
uses: microsoft/setup-msbuild@v1.1
36+
uses: microsoft/setup-msbuild@v2
3737

3838
- name: Restore packages
3939
run: msbuild $env:Solution_Name /t:Restore /p:Platform=$env:TargetPlatform /p:Configuration=$env:Configuration /p:RestorePackagesConfig=True
@@ -52,7 +52,7 @@ jobs:
5252

5353
# Upload the package: https://github.com/actions/upload-artifact
5454
- name: Upload build artifacts
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: Package-${{ matrix.configuration }}
5858
path: |

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: windows-2022
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: recursive
1616

1717
- name: Setup MSBuild
18-
uses: microsoft/setup-msbuild@v1.1
18+
uses: microsoft/setup-msbuild@v2
1919

2020
- name: Setup Go
21-
uses: actions/setup-go@v2
21+
uses: actions/setup-go@v5
2222
with:
2323
go-version: '1.17'
2424

@@ -106,14 +106,14 @@ jobs:
106106
zip -9r ../../../"OKEGui-v$(git describe --tags).zip" OKEGui
107107
108108
- name: Upload artifact
109-
uses: actions/upload-artifact@v3
109+
uses: actions/upload-artifact@v4
110110
with:
111111
name: release
112112
path: |
113113
OKEGui-*.zip
114114
115115
- name: Release
116-
uses: softprops/action-gh-release@v1
116+
uses: softprops/action-gh-release@v2
117117
with:
118118
files: OKEGui-*.zip
119119
draft: true

0 commit comments

Comments
 (0)