Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): pin dependencies #7837

Merged
merged 1 commit into from
Dec 13, 2024
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
8 changes: 4 additions & 4 deletions .github/actions/clone-submodules/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ description: Clone submodules
runs:
using: composite
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
show-progress: false
repository: tc39/test262
path: tasks/coverage/test262
ref: dc0082c5ea347e5ecb585c1d7ebf4555aa429528

- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
show-progress: false
repository: babel/babel
path: tasks/coverage/babel
ref: 54a8389fa31ce4fd18b0335b05832dc1ad3cc21f

- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
show-progress: false
repository: microsoft/TypeScript
path: tasks/coverage/typescript
ref: d85767abfd83880cea17cea70f9913e9c4496dcc

- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
show-progress: false
repository: prettier/prettier
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: pnpm
runs:
using: composite
steps:
- uses: pnpm/[email protected]
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0

- uses: actions/setup-node@v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version-file: .node-version
registry-url: "https://registry.npmjs.org"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/[email protected]
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- uses: oxc-project/[email protected]
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
with:
restore-cache: false
tools: just,cargo-shear@1,dprint
components: rustfmt

- name: Restore dprint plugin cache
id: cache-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
key: dprint-autofix-ci-${{ runner.os }}-${{ hashFiles('dprint.json') }}
path: ~/.cache/dprint

- run: just fmt

- uses: autofix-ci/[email protected]
- uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944 # v1.3.1
with:
fail-fast: false

- name: Save dprint plugin cache
if: ${{ github.ref_name == 'main' }}
id: cache-save
uses: actions/cache/save@v4
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
path: ~/.cache/dprint
30 changes: 15 additions & 15 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:

steps:
- name: Checkout Branch
uses: taiki-e/[email protected]
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- uses: oxc-project/[email protected]
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
with:
cache-key: benchmark-${{ matrix.component }}
save-cache: ${{ github.ref_name == 'main' }}
Expand All @@ -91,7 +91,7 @@ jobs:
rm target/codspeed/oxc_benchmark/*.d

- name: Run benchmark
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@513a19673a831f139e8717bf45ead67e47f00044 # v3
timeout-minutes: 30
with:
# Dummy token for tokenless runs, to suppress logging hash of metadata JSON (see `upload.mjs`)
Expand All @@ -100,7 +100,7 @@ jobs:
run: cargo codspeed run

- name: Upload bench data artefact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: result-${{ matrix.component }}
path: ${{ env.DATA_DIR }} # env.DATA_DIR from `capture.mjs`
Expand All @@ -115,9 +115,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: taiki-e/[email protected]
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- uses: oxc-project/[email protected]
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
with:
cache-key: benchmark-linter
save-cache: ${{ github.ref_name == 'main' }}
Expand All @@ -133,7 +133,7 @@ jobs:
rm target/codspeed/oxc_benchmark/*.d

- name: Upload Binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
if-no-files-found: error
name: benchmark-linter
Expand All @@ -154,10 +154,10 @@ jobs:

steps:
- name: Checkout Branch
uses: taiki-e/[email protected]
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- name: Download Binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: benchmark-linter
path: ./target/codspeed/oxc_benchmark
Expand All @@ -168,7 +168,7 @@ jobs:
chmod +x ./target/codspeed/oxc_benchmark/*

- name: Install codspeed
uses: taiki-e/[email protected]
uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8
with:
tool: cargo-codspeed

Expand All @@ -182,7 +182,7 @@ jobs:
run: node capture.mjs &

- name: Run benchmark
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@513a19673a831f139e8717bf45ead67e47f00044 # v3
timeout-minutes: 30
env:
FIXTURE: ${{ matrix.fixture }}
Expand All @@ -193,7 +193,7 @@ jobs:
run: cargo codspeed run

- name: Upload bench data artefact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: result-linter${{ matrix.fixture }}
path: ${{ env.DATA_DIR }} # env.DATA_DIR from `capture.mjs`
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: taiki-e/[email protected]
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- uses: ./.github/actions/pnpm

Expand All @@ -287,7 +287,7 @@ jobs:
run: node create_temp_dir.mjs

- name: Download artefacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
merge-multiple: true
pattern: result-*
Expand All @@ -300,7 +300,7 @@ jobs:
run: node upload.mjs

- name: Delete temporary artefacts
uses: geekyeggo/delete-artifact@v5
uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # v5
with:
name: |
result-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bloat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
name: Cargo Bloat
runs-on: ubuntu-latest
steps:
- uses: taiki-e/[email protected]
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- uses: oxc-project/[email protected]
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
with:
cache-key: warm
tools: cargo-bloat
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cargo-llvm-lines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: taiki-e/[email protected]
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1

- uses: oxc-project/[email protected]
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0

- name: Install cargo-llvm-lines
uses: taiki-e/[email protected]
uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8
with:
tool: cargo-llvm-lines

Expand Down
Loading
Loading