Skip to content

Commit 4f0a1a0

Browse files
Update actions/checkout action to v6
1 parent 223b428 commit 4f0a1a0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-24.04
2121
steps:
2222
- name: Clone the repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Read version from ref
2626
id: version

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
DOTNET_CLI_TELEMETRY_OPTOUT: 1
3232
NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: Set up .NET SDK
3636
uses: actions/setup-dotnet@v5
3737
with:
@@ -51,14 +51,14 @@ jobs:
5151
encoding:
5252
runs-on: ubuntu-24.04
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
- name: Verify encoding
5656
shell: pwsh
5757
run: scripts/Test-Encoding.ps1
5858
licenses:
5959
runs-on: ubuntu-24.04
6060
steps:
6161
- name: Check out the sources
62-
uses: actions/checkout@v5
62+
uses: actions/checkout@v6
6363
- name: REUSE license check
6464
uses: fsfe/reuse-action@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "version=$(if ($env:GITHUB_REF.StartsWith('refs/tags/v')) { $env:GITHUB_REF -replace '^refs/tags/v', '' } else { 'next' })" >> $env:GITHUB_OUTPUT
2828

2929
- name: Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Read the changelog
3333
uses: ForNeVeR/ChangelogAutomation.action@v2

0 commit comments

Comments
 (0)