Skip to content

Commit f8bd800

Browse files
committed
bump actions
1 parent 8e0d8c1 commit f8bd800

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: windows-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Setup msbuild
15-
uses: microsoft/setup-msbuild@v1.0.2
15+
uses: microsoft/setup-msbuild@v1.1.3
1616
- name: Install dependencies
1717
run: msbuild -t:restore
1818
- name: Build project
@@ -24,15 +24,15 @@ jobs:
2424
cp "LICENSE" "ModAssistant/bin/Release/LICENSE.ModAssistant.txt"
2525
- name: Upload Build
2626
if: startsWith(github.ref, 'refs/tags/') == false
27-
uses: actions/upload-artifact@v2
27+
uses: actions/upload-artifact@v3
2828
with:
2929
name: ModAssistant-${{ github.sha }}
3030
path: ./ModAssistant/bin/Release/
3131
- name: Extract Release Version
3232
if: startsWith(github.ref, 'refs/tags/')
3333
id: get_version
3434
shell: bash
35-
run: echo ::set-output name=version::${GITHUB_REF#refs/tags/v}
35+
run: echo "version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
3636
- name: Release
3737
if: startsWith(github.ref, 'refs/tags/')
3838
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)