Skip to content

Commit 043adec

Browse files
dependabot[bot]gmta
authored andcommitted
CI: Bump actions/checkout from 6.0.3 to 7.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.3...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent abe6d2c commit 043adec

11 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/ci-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v6.0.3
37+
uses: actions/checkout@v7.0.0
3838
with:
3939
fetch-depth: 0
4040

@@ -79,7 +79,7 @@ jobs:
7979

8080
steps:
8181
- name: Checkout
82-
uses: actions/checkout@v6.0.3
82+
uses: actions/checkout@v7.0.0
8383

8484
- name: Prepare Docker context
8585
shell: bash

.github/workflows/dev-container.yml

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

2525
- name: Checkout
26-
uses: actions/checkout@v6.0.3
26+
uses: actions/checkout@v7.0.0
2727

2828
- name: Login to GitHub Container Registry
2929
uses: docker/login-action@v4

.github/workflows/flatpak-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
options: --privileged
2020

2121
steps:
22-
- uses: actions/checkout@v6.0.3
22+
- uses: actions/checkout@v7.0.0
2323
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
2424
with:
2525
bundle: Ladybird.flatpak

.github/workflows/js-and-wasm-artifacts.yml

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

5050
steps:
5151
- name: Checkout LadybirdBrowser/ladybird
52-
uses: actions/checkout@v6.0.3
52+
uses: actions/checkout@v7.0.0
5353
with:
5454
ref: ${{ inputs.reference_to_build }}
5555

.github/workflows/js-and-wasm-benchmarks.yml

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

3636
steps:
3737
- name: 'Checkout LadybirdBrowser/js-benchmarks'
38-
uses: actions/checkout@v6.0.3
38+
uses: actions/checkout@v7.0.0
3939
with:
4040
repository: LadybirdBrowser/js-benchmarks
4141
path: js-benchmarks

.github/workflows/lagom-template.yml

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

55-
- uses: actions/checkout@v6.0.3
55+
- uses: actions/checkout@v7.0.0
5656
if: ${{ github.event_name == 'pull_request' }}
5757
with:
5858
ref: refs/pull/${{ github.event.pull_request.number }}/merge

.github/workflows/libjs-test262.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,30 @@ jobs:
2323

2424
steps:
2525
- name: Checkout LadybirdBrowser/ladybird
26-
uses: actions/checkout@v6.0.3
26+
uses: actions/checkout@v7.0.0
2727
with:
2828
persist-credentials: false
2929

3030
- name: Checkout LadybirdBrowser/libjs-test262
31-
uses: actions/checkout@v6.0.3
31+
uses: actions/checkout@v7.0.0
3232
with:
3333
repository: LadybirdBrowser/libjs-test262
3434
path: libjs-test262
3535

3636
- name: Checkout LadybirdBrowser/libjs-data
37-
uses: actions/checkout@v6.0.3
37+
uses: actions/checkout@v7.0.0
3838
with:
3939
repository: LadybirdBrowser/libjs-data
4040
path: libjs-data
4141

4242
- name: Checkout tc39/test262
43-
uses: actions/checkout@v6.0.3
43+
uses: actions/checkout@v7.0.0
4444
with:
4545
repository: tc39/test262
4646
path: test262
4747

4848
- name: Checkout tc39/test262-parser-tests
49-
uses: actions/checkout@v6.0.3
49+
uses: actions/checkout@v7.0.0
5050
with:
5151
repository: tc39/test262-parser-tests
5252
path: test262-parser-tests

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
image: ghcr.io/ladybirdbrowser/ladybird-ci:2026.06.14
1414

1515
steps:
16-
- uses: actions/checkout@v6.0.3
16+
- uses: actions/checkout@v7.0.0
1717

1818
- name: Set Up Environment
1919
uses: ./.github/actions/setup

.github/workflows/nightly-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
os: [macos-14]
2828

2929
steps:
30-
- uses: actions/checkout@v6.0.3
30+
- uses: actions/checkout@v7.0.0
3131

3232
- name: Set Up Environment
3333
id: 'setup'

.github/workflows/notes-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.repository == 'LadybirdBrowser/ladybird'
1515
runs-on: blacksmith-2vcpu-ubuntu-2404
1616
steps:
17-
- uses: actions/checkout@v6.0.3
17+
- uses: actions/checkout@v7.0.0
1818
with:
1919
fetch-depth: 0
2020
- uses: fregante/setup-git-user@v2

0 commit comments

Comments
 (0)