Skip to content

Commit 79f06a1

Browse files
dependabot[bot]spholz
authored andcommitted
CI: Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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 7e0a81b commit 79f06a1

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/dev-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323

2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Login to GitHub Container Registry
2828
uses: docker/login-action@v3

.github/workflows/label-pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: always() && github.repository == 'SerenityOS/serenity'
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919

2020
- name: Label pull request
2121
uses: actions/github-script@v8

.github/workflows/lagom-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
3232
# Luckily, GitHub creates and maintains a merge branch that is updated whenever the target or source branch is modified. By
3333
# checking this branch out, we gain a stabler `master` at the cost of reproducibility.
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
if: ${{ github.event_name != 'pull_request' }}
3636

37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
if: ${{ github.event_name == 'pull_request' }}
3939
with:
4040
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/manpages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- uses: r-lib/actions/setup-pandoc@v2
1616
with:
1717
pandoc-version: '2.13'

.github/workflows/serenity-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
3737
# Luckily, GitHub creates and maintains a merge branch that is updated whenever the target or source branch is modified. By
3838
# checking this branch out, we gain a stabler `master` at the cost of reproducibility.
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
if: ${{ github.event_name != 'pull_request' }}
4141

42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
if: ${{ github.event_name == 'pull_request' }}
4444
with:
4545
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/social-media.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
99

1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: actions/setup-node@v6
1313
with:
1414
node-version: '14'
@@ -28,7 +28,7 @@ jobs:
2828
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
2929

3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- uses: actions/setup-node@v6
3333
with:
3434
node-version: '14'

.github/workflows/wasm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
fail-fast: false
1616
steps:
1717
- name: Checkout SerenityOS/serenity
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Checkout SerenityOS/libjs-data libjs-wasm
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
repository: SerenityOS/libjs-data
2424
path: libjs-data

0 commit comments

Comments
 (0)