Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3

- name: Prepare Docker context
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3

- name: Login to GitHub Container Registry
uses: docker/login-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flatpak-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
options: --privileged

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: Ladybird.flatpak
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-and-wasm-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: Checkout LadybirdBrowser/ladybird
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
ref: ${{ inputs.reference_to_build }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-and-wasm-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: 'Checkout LadybirdBrowser/js-benchmarks'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
repository: LadybirdBrowser/js-benchmarks
path: js-benchmarks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lagom-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
# Luckily, GitHub creates and maintains a merge branch that is updated whenever the target or source branch is modified. By
# checking this branch out, we gain a stabler `master` at the cost of reproducibility.
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
if: ${{ github.event_name != 'pull_request' }}

- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
if: ${{ github.event_name == 'pull_request' }}
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/libjs-test262.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,30 @@ jobs:

steps:
- name: Checkout LadybirdBrowser/ladybird
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
persist-credentials: false

- name: Checkout LadybirdBrowser/libjs-test262
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
repository: LadybirdBrowser/libjs-test262
path: libjs-test262

- name: Checkout LadybirdBrowser/libjs-data
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
repository: LadybirdBrowser/libjs-data
path: libjs-data

- name: Checkout tc39/test262
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
repository: tc39/test262
path: test262

- name: Checkout tc39/test262-parser-tests
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
repository: tc39/test262-parser-tests
path: test262-parser-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
image: ghcr.io/ladybirdbrowser/ladybird-ci:2026.05.25

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3

- name: Set Up Environment
uses: ./.github/actions/setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
os: [macos-14]

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3

- name: Set Up Environment
id: 'setup'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notes-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: github.repository == 'LadybirdBrowser/ladybird'
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- uses: fregante/setup-git-user@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: 'Checkout ladybird'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
ref: ${{ github.sha }}

Expand All @@ -47,7 +47,7 @@ jobs:
echo "sha=${{ github.sha }}" >> "${GITHUB_OUTPUT}"

- name: 'Checkout LadybirdBrowser/web-benchmarks'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
repository: LadybirdBrowser/web-benchmarks
path: web-benchmarks
Expand Down
Loading