2828
2929jobs :
3030 collect-test-projects :
31- runs-on : ubuntu-22 .04
31+ runs-on : ubuntu-24 .04
3232
3333 outputs :
3434 test-projects : ${{ steps.set-test-projects.outputs.test-projects }}
3535
3636 steps :
3737 - name : Checkout Repository
38- uses : actions/checkout@v4
38+ uses : actions/checkout@v5
3939
4040 - id : set-test-projects
4141 name : Collect Test Projects
5454
5555 steps :
5656 - name : Checkout Repository
57- uses : actions/checkout@v4
57+ uses : actions/checkout@v5
5858 with :
5959 lfs : true
6060
6565 path : ~/.nuget/packages
6666
6767 - name : Setup .NET
68- uses : actions/setup-dotnet@v4
68+ uses : actions/setup-dotnet@v5
6969
7070 - name : Restore NuGet Packages
7171 run : ./build.sh --target=Restore-NuGet-Packages
9797 contents : write
9898 pull-requests : read
9999
100- runs-on : ubuntu-22 .04
100+ runs-on : ubuntu-24 .04
101101
102102 env :
103103 CODE_SIGNING_CERTIFICATE_BASE64 : ${{ secrets.CODE_SIGNING_CERTIFICATE_BASE64 }}
@@ -112,13 +112,13 @@ jobs:
112112
113113 steps :
114114 - name : Checkout Repository
115- uses : actions/checkout@v4
115+ uses : actions/checkout@v5
116116 with :
117117 lfs : true
118118 fetch-depth : 0
119119
120120 - name : Download Test And Coverage Results
121- uses : actions/download-artifact@v4
121+ uses : actions/download-artifact@v5
122122 with :
123123 pattern : Testcontainers*
124124 path : test-results
@@ -130,17 +130,17 @@ jobs:
130130 - name : Cache NuGet Packages
131131 uses : actions/cache@v4
132132 with :
133- key : ubuntu-22 .04-nuget-${{ hashFiles('Directory.Packages.props') }}
133+ key : ubuntu-24 .04-nuget-${{ hashFiles('Directory.Packages.props') }}
134134 path : ~/.nuget/packages
135135
136136 - name : Setup Java
137- uses : actions/setup-java@v4
137+ uses : actions/setup-java@v5
138138 with :
139139 distribution : temurin
140140 java-version : 21
141141
142142 - name : Setup .NET
143- uses : actions/setup-dotnet@v4
143+ uses : actions/setup-dotnet@v5
144144
145145 - name : Restore NuGet Packages
146146 run : ./build.sh --target=Restore-NuGet-Packages
0 commit comments