Skip to content

Commit 3583d06

Browse files
updated more github action versions
1 parent 7e1a2c9 commit 3583d06

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v4
22+
uses: actions/setup-dotnet@v5
2323
with:
2424
dotnet-version: "10.0.x"
2525

.github/workflows/pack_and_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
fetch-depth: 0
2727

28-
- uses: actions/setup-dotnet@v4
28+
- uses: actions/setup-dotnet@v5
2929
with:
3030
dotnet-version: ${{ env.DOTNET_VERSION }}
3131

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fetch-depth: 0
2727

2828
- name: Setup .NET SDKs
29-
uses: actions/setup-dotnet@v4
29+
uses: actions/setup-dotnet@v5
3030
with:
3131
dotnet-version: |
3232
10.0.x

.github/workflows/template_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout project repo (cookiecutter metadata only)
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
with:
3939
repository: ${{ github.repository }}
4040
ref: ${{ inputs.repo_branch }}

.github/workflows/test_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ jobs:
2727
steps:
2828
- name: Checkout @ tested commit (preferred)
2929
if: ${{ inputs.sha != '' }}
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
ref: ${{ inputs.sha }}
3333
fetch-depth: 0
3434

3535
- name: Checkout @ tested branch (fallback)
3636
if: ${{ inputs.sha == '' && inputs.branch != '' }}
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
with:
3939
ref: ${{ inputs.branch }}
4040
fetch-depth: 0
4141

4242
- name: Checkout @ caller ref (last resort)
4343
if: ${{ inputs.sha == '' && inputs.branch == '' }}
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 0
4747

0 commit comments

Comments
 (0)