Skip to content

Commit 6222667

Browse files
Merge pull request #114 from thomasclaudiushuber/issue-113
Use latest action versions in GitHub actions
2 parents 02e0100 + d8cbb82 commit 6222667

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build_mvvmgen.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
working-directory: src
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 9.0.x
2323

@@ -36,9 +36,9 @@ jobs:
3636
working-directory: src
3737

3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
- name: Setup .NET
41-
uses: actions/setup-dotnet@v3
41+
uses: actions/setup-dotnet@v4
4242
with:
4343
dotnet-version: 9.0.x
4444

.github/workflows/pack_mvvmgen.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
working-directory: src
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Setup .NET
15-
uses: actions/setup-dotnet@v3
15+
uses: actions/setup-dotnet@v4
1616
with:
1717
dotnet-version: 9.0.x
1818

@@ -32,7 +32,7 @@ jobs:
3232
run: dotnet pack -v normal -c Release --no-restore
3333
working-directory: src/MvvmGen
3434
- name: Upload Artifact
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: nupkg
3838
path: src/MvvmGen/bin/Release/*.nupkg
@@ -44,9 +44,9 @@ jobs:
4444
working-directory: src
4545

4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
- name: Setup .NET
49-
uses: actions/setup-dotnet@v3
49+
uses: actions/setup-dotnet@v4
5050
with:
5151
dotnet-version: 9.0.x
5252

@@ -66,7 +66,7 @@ jobs:
6666
run: dotnet pack -v normal -c MvvmGen_PureCodeGeneration --no-restore
6767
working-directory: src/MvvmGen
6868
- name: Upload Artifact
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: nupkg
7272
path: src/MvvmGen/bin/MvvmGen_PureCodeGeneration/*.nupkg

0 commit comments

Comments
 (0)