Skip to content

Commit 64bbda8

Browse files
Update actions/checkout action to v6
1 parent 2424396 commit 64bbda8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.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

@@ -50,14 +50,14 @@ jobs:
5050
encoding:
5151
runs-on: ubuntu-24.04
5252
steps:
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454
- name: Verify encoding
5555
shell: pwsh
5656
run: scripts/Test-Encoding.ps1
5757
licenses:
5858
runs-on: ubuntu-24.04
5959
steps:
6060
- name: Check out the sources
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
- name: REUSE license check
6363
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)