Skip to content

Commit 06c87f0

Browse files
CI: Bump actions/checkout from 4 to 6
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] <support@github.com>
1 parent b998167 commit 06c87f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/linter.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: Clone Repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/pr_labels.yml

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

1414
steps:
1515
- name: Clone repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
# pull_request_target is run under forks, use main repo source
1919
fetch-depth: 0

.github/workflows/stable-compilation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161
libdrm-dev libgbm-dev # only needed for sdl2 on debian 11
6262
6363
- name: Clone Repository
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565
if: github.event.inputs.git-ref == ''
6666
- name: Clone Repository (with custom ref)
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v6
6868
if: github.event.inputs.git-ref != ''
6969
with:
7070
ref: ${{ github.event.inputs.git-ref }}

0 commit comments

Comments
 (0)