Skip to content

Commit cdf6e73

Browse files
committed
Updated all used GitHub actions
* `checkout` to `6` * `dotnet-setup` to `5`
1 parent 0db95c1 commit cdf6e73

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
# If you do not check out your code, Copilot will do this for you.
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- name: Setup necessary dotnet SDKs
32-
uses: actions/setup-dotnet@v4
32+
uses: actions/setup-dotnet@v5
3333
with:
3434
global-json-file: global.json
3535
dotnet-version: |

.github/workflows/publish-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Set Build Version
2222
run: |
@@ -44,7 +44,7 @@ jobs:
4444
shell: pwsh
4545

4646
- name: Install .NET Core
47-
uses: actions/setup-dotnet@v4
47+
uses: actions/setup-dotnet@v5
4848
with:
4949
dotnet-version: 9.0.304
5050

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
# This is necessary so that we have the tags.
2222
fetch-depth: 0
@@ -46,7 +46,7 @@ jobs:
4646
shell: pwsh
4747

4848
- name: Install .NET Core
49-
uses: actions/setup-dotnet@v4
49+
uses: actions/setup-dotnet@v5
5050
with:
5151
dotnet-version: 9.0.304
5252

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929

3030
- name: Install .NET Core
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ matrix.dotnet }}
3434

0 commit comments

Comments
 (0)