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
2 changes: 1 addition & 1 deletion .github/actions/binary-limit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:

steps:
- name: GitHub Script
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
uses: actions/github-script@450193c5abd4cdb17ba9f3ffcfe8f635c4bb6c2a
with:
script: |
const limit = parseInt("${{ inputs.size-threshold }}") || 51200;
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
push:
branches:
- main
- v2
# Ignore md files in push to skip workflow when only documentation changes
paths-ignore:
- '**/*.md'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand Down Expand Up @@ -108,7 +109,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: crate-ci/typos@5c19779cb52ea50e151f5a10333ccd269227b5ae # v1.41.0
- uses: crate-ci/typos@bb4666ad77b539a6b4ce4eda7ebb6de553704021 # v1.42.0
with:
files: .

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
push:
branches:
- main
- v2
paths:
- '.github/workflows/**'
- 'crates/**'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand All @@ -23,7 +24,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
cancel-in-progress: ${{ github.ref_name != 'main' && github.ref_name != 'v2' }}

permissions:
# Allow commenting on issues for `reusable-build.yml`
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
key: build-bench-${{ inputs.target }}

- name: Install cargo-codspeed binary
uses: taiki-e/install-action@0e76c5c569f13f7eb21e8e5b26fe710062b57b62 # v2
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2
with:
tool: cargo-codspeed@2.10.1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
key: build-bench-${{ inputs.target }}

- name: Install cargo-codspeed binary
uses: taiki-e/install-action@0e76c5c569f13f7eb21e8e5b26fe710062b57b62 # v2
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2
with:
tool: cargo-codspeed@2.10.1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
run: cargo codegen

- name: Install cargo-deny
uses: taiki-e/install-action@0e76c5c569f13f7eb21e8e5b26fe710062b57b62 # v2
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2
with:
tool: cargo-deny@0.18.3
- name: Check licenses
Expand Down
Loading
Loading