@@ -15,11 +15,11 @@ jobs:
1515 GITHUB_CONTEXT : ${{ toJson(github) }}
1616 run : echo "$GITHUB_CONTEXT"
1717 - name : Checkout
18- uses : actions/checkout@v4
18+ uses : actions/checkout@v5
1919 with :
2020 fetch-depth : 0
2121 - name : Setup .NET versions
22- uses : actions/setup-dotnet@v4
22+ uses : actions/setup-dotnet@v5
2323 with :
2424 dotnet-version : |
2525 8.0.x
@@ -40,23 +40,23 @@ jobs:
4040 continue-on-error : true
4141 - name : Pack
4242 run : dotnet pack --output ./artifacts --configuration Release --no-build
43- - uses : actions/upload-artifact@v4
43+ - uses : actions/upload-artifact@v5
4444 with :
4545 name : artifacts
4646 path : ./artifacts
4747
4848 testOnSupportedDotnetVersions :
4949 strategy :
5050 matrix :
51- os : [ubuntu-22.04 , windows-latest]
51+ os : [ubuntu-latest , windows-latest]
5252 runs-on : ${{ matrix.os }}
5353 steps :
5454 - name : Checkout
55- uses : actions/checkout@v4
55+ uses : actions/checkout@v5
5656 - name : Fetch all history for all tags and branches
5757 run : git fetch --prune --unshallow
5858 - name : Setup .NET versions
59- uses : actions/setup-dotnet@v4
59+ uses : actions/setup-dotnet@v5
6060 with :
6161 dotnet-version : |
6262 8.0.x
@@ -77,13 +77,13 @@ jobs:
7777 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
7878 steps :
7979 - name : Checkout
80- uses : actions/checkout@v4
80+ uses : actions/checkout@v5
8181 - name : Setup .NET versions
82- uses : actions/setup-dotnet@v4
82+ uses : actions/setup-dotnet@v5
8383 with :
8484 dotnet-version : |
8585 10.0.x
86- - uses : actions/download-artifact@v4
86+ - uses : actions/download-artifact@v5
8787 with :
8888 name : artifacts
8989 path : ./artifacts
0 commit comments