File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 15
15
name : " Build"
16
16
uses : ./.github/workflows/build.yml
17
17
with :
18
- dotnet_version : ' 8.0.100 '
18
+ dotnet_version : ' 8.0.101 '
19
19
20
20
# Preview release on push to main only
21
21
# Stable release on version tag push only
25
25
needs : build
26
26
uses : ./.github/workflows/deploy.yml
27
27
with :
28
- dotnet_version : ' 8.0.100 '
28
+ dotnet_version : ' 8.0.101 '
29
29
azure_nuget_feed : ' https://pkgs.dev.azure.com/benito356/NetDevOpsTest/_packaging/PleOps/nuget/v3/index.json'
30
30
secrets :
31
31
nuget_preview_token : " az" # as we use AzureDevOps, this is a required dummy value
Original file line number Diff line number Diff line change 25
25
fetch-depth : 0 # We need full history for version number
26
26
27
27
- name : " Setup .NET SDK"
28
- uses : actions/setup-dotnet@v3
28
+ uses : actions/setup-dotnet@v4
29
29
with :
30
30
dotnet-version : ${{ inputs.dotnet_version }}
31
31
47
47
48
48
- name : " Publish artifacts to CI"
49
49
if : ${{ matrix.is_main_build }}
50
- uses : actions/upload-artifact@v3
50
+ uses : actions/upload-artifact@v4
51
51
with :
52
52
name : " Artifacts"
53
53
retention-days : 7
57
57
58
58
- name : Publish docs artifact to CI
59
59
if : ${{ matrix.is_main_build }}
60
- uses : actions/upload-pages-artifact@v2
60
+ uses : actions/upload-pages-artifact@v3
61
61
with :
62
62
path : build/artifacts/docs
Original file line number Diff line number Diff line change 32
32
steps :
33
33
- name : Deploy to GitHub Pages
34
34
id : deployment
35
- uses : actions/deploy-pages@v2
35
+ uses : actions/deploy-pages@v4
36
36
37
37
push_artifacts :
38
38
name : " Artifacts"
@@ -44,13 +44,13 @@ jobs:
44
44
fetch-depth : 0 # We need full history for version number
45
45
46
46
- name : " Download artifacts"
47
- uses : actions/download-artifact@v3
47
+ uses : actions/download-artifact@v4
48
48
with :
49
49
name : " Artifacts"
50
50
path : " ./build/artifacts/"
51
51
52
52
- name : " Setup .NET SDK"
53
- uses : actions/setup-dotnet@v3
53
+ uses : actions/setup-dotnet@v4
54
54
with :
55
55
dotnet-version : ${{ inputs.dotnet_version }}
56
56
You can’t perform that action at this time.
0 commit comments