Skip to content

Commit 55cf0ef

Browse files
Bump actions/checkout from 4 to 6 (#203)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0157b37 commit 55cf0ef

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout Code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Run markdownlint-cli
2525
uses: nosborn/[email protected]
2626
with:
@@ -36,7 +36,7 @@ jobs:
3636
dotnet-version:
3737
- '9.0.x'
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Setup dotnet ${{ matrix.dotnet-version }}
4141
uses: actions/setup-dotnet@v4
4242
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push' && startsWith(github.event.workflow_run.head_branch, 'v') }}
1818
steps:
1919
- name: Check out the repository including tags
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.workflow_run.head_sha }}
2323
fetch-depth: 0
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
if: ${{ needs.validate-tag.outputs.valid_tag == 'true' && github.event.workflow_run.conclusion == 'success' }}
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
- name: Setup dotnet
5656
uses: actions/setup-dotnet@v4
5757
with:

.github/workflows/sync-test-fixtures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
- name: Sync fixtures
1515
run: |
1616
TMP_DIR=$(mktemp -d)

0 commit comments

Comments
 (0)