28
28
29
29
jobs :
30
30
collect-test-projects :
31
- runs-on : ubuntu-22 .04
31
+ runs-on : ubuntu-24 .04
32
32
33
33
outputs :
34
34
test-projects : ${{ steps.set-test-projects.outputs.test-projects }}
35
35
36
36
steps :
37
37
- name : Checkout Repository
38
- uses : actions/checkout@v4
38
+ uses : actions/checkout@v5
39
39
40
40
- id : set-test-projects
41
41
name : Collect Test Projects
54
54
55
55
steps :
56
56
- name : Checkout Repository
57
- uses : actions/checkout@v4
57
+ uses : actions/checkout@v5
58
58
with :
59
59
lfs : true
60
60
65
65
path : ~/.nuget/packages
66
66
67
67
- name : Setup .NET
68
- uses : actions/setup-dotnet@v4
68
+ uses : actions/setup-dotnet@v5
69
69
70
70
- name : Restore NuGet Packages
71
71
run : ./build.sh --target=Restore-NuGet-Packages
97
97
contents : write
98
98
pull-requests : read
99
99
100
- runs-on : ubuntu-22 .04
100
+ runs-on : ubuntu-24 .04
101
101
102
102
env :
103
103
CODE_SIGNING_CERTIFICATE_BASE64 : ${{ secrets.CODE_SIGNING_CERTIFICATE_BASE64 }}
@@ -112,13 +112,13 @@ jobs:
112
112
113
113
steps :
114
114
- name : Checkout Repository
115
- uses : actions/checkout@v4
115
+ uses : actions/checkout@v5
116
116
with :
117
117
lfs : true
118
118
fetch-depth : 0
119
119
120
120
- name : Download Test And Coverage Results
121
- uses : actions/download-artifact@v4
121
+ uses : actions/download-artifact@v5
122
122
with :
123
123
pattern : Testcontainers*
124
124
path : test-results
@@ -130,17 +130,17 @@ jobs:
130
130
- name : Cache NuGet Packages
131
131
uses : actions/cache@v4
132
132
with :
133
- key : ubuntu-22 .04-nuget-${{ hashFiles('Directory.Packages.props') }}
133
+ key : ubuntu-24 .04-nuget-${{ hashFiles('Directory.Packages.props') }}
134
134
path : ~/.nuget/packages
135
135
136
136
- name : Setup Java
137
- uses : actions/setup-java@v4
137
+ uses : actions/setup-java@v5
138
138
with :
139
139
distribution : temurin
140
140
java-version : 21
141
141
142
142
- name : Setup .NET
143
- uses : actions/setup-dotnet@v4
143
+ uses : actions/setup-dotnet@v5
144
144
145
145
- name : Restore NuGet Packages
146
146
run : ./build.sh --target=Restore-NuGet-Packages
0 commit comments