Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/actions/build-rsbuild/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
corepack enable

- name: Checkout Rsbuild repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build-rsdoctor/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
corepack enable

- name: Checkout Rsdoctor repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build-rslib/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
corepack enable

- name: Checkout Rslib repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build-rspack/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
corepack enable

- name: Checkout Rspack repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build-rspress/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
corepack enable

- name: Checkout Rspress repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build-rstest/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
corepack enable

- name: Checkout Rstest repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/ecosystem_ci_dispatch/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ runs:
client_payload: ${{ inputs.client-payload }}

- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/ecosystem_ci_per_commit/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
client_payload: ${{ inputs.client-payload }}

- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1

Expand Down Expand Up @@ -92,7 +92,7 @@ runs:
})

- name: Checkout ecosystem-ci repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: rstackjs/rstack-ecosystem-ci
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/prepare-rspack-binding/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
using: composite
steps:
- name: Checkout Rspack repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
path: ${{ inputs.path }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: rsbuild (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsbuild
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: rslib (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rslib
- uses: moonrepo/setup-rust@v1
- name: Install
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: rstest (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rstest
- name: Install
run: |
Expand All @@ -120,7 +120,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: rsdoctor (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
- uses: moonrepo/setup-rust@v1
- name: Install
Expand All @@ -144,7 +144,7 @@ jobs:
needs: get-runner-labels
runs-on: ${{ fromJSON(needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/prepare-rspack-binding

rspack:
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: rspack (${{ matrix.suite }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rspack
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rsbuild-ecosystem-ci-from-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsbuild
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
- uses: ./.github/actions/build-rsbuild
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rsbuild-ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsbuild
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsbuild
with:
repository: ${{ inputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rsbuild-ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsbuild
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsbuild
with:
repository: ${{ inputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rsdoctor-ecosystem-ci-from-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.suite != '-' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
with:
repository: ${{ inputs.repo }}
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
with:
repository: ${{ inputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rsdoctor-ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.suite != '-' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
with:
repository: ${{ inputs.repo }}
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
with:
repository: ${{ inputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rsdoctor-ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.suite != '-' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
with:
repository: ${{ inputs.repo }}
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rsdoctor
with:
repository: ${{ inputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rslib-ecosystem-ci-from-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rslib
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
- uses: ./.github/actions/build-rslib
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rslib-ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rslib
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rslib
with:
repository: ${{ inputs.repo }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rslib-ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rslib
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rslib
with:
repository: ${{ inputs.repo }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rspack-ecosystem-ci-from-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
needs: get-runner-labels
runs-on: ${{ fromJSON(needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# Path A: download pre-built binding from rspack CI
- name: Download binding from rspack CI
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
name: execute-all (${{ inputs.suite }})
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rspack
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
- uses: ./.github/actions/build-rspack
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rspack-ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
needs: get-runner-labels
runs-on: ${{ fromJSON(needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/prepare-rspack-binding
with:
repository: ${{ inputs.repo }}
Expand All @@ -77,7 +77,7 @@ jobs:
needs: prepare-binding
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rspack
with:
repository: ${{ inputs.repo }}
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
- uses: ./.github/actions/build-rspack
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rspack-ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
needs: get-runner-labels
runs-on: ${{ fromJSON(needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/prepare-rspack-binding
with:
repository: ${{ inputs.repo }}
Expand All @@ -84,7 +84,7 @@ jobs:
name: execute-all (${{ inputs.suite }})
if: "inputs.suite != '-'"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
- uses: ./.github/actions/build-rspack
with:
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: execute-all (${{ matrix.suite }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/build-rspack
with:
repository: ${{ inputs.repo }}
Expand Down
Loading
Loading