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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ${{ inputs.runner }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
name: Test compiler and stdlib (batch ${{ matrix.batch.display }}/${{ matrix.num-batch }})

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
runs-on: ${{ inputs.runner }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
runs-on: ${{ needs.pre_run.outputs.linux_runner }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
if: ${{ !github.event.pull_request.draft }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
DOC_TARGET: x86_64-linux-gnu

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup latest compiler
uses: nim-works/setup-nimskull@0.1.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/leak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# Works around https://github.com/actions/runner-images/issues/9491
run: sudo sysctl vm.mmap_rnd_bits=28

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- name: Checkout (for Git build)
if: inputs.source-archive == ''
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Get actions (for source-archive builds)
if: inputs.source-archive != ''
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: git-src
sparse-checkout: .github/actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
# Repository required for changelog builder
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
sparse-checkout: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reproducible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# On the contrary, reprotest needs all of those deps to work
sudo apt-get install -yqq reprotest

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slash-command-generate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
exit 1

- name: "Checkout merge head for #${{ env.PR }}"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.client_payload.pull_request.merge_commit_sha }}
sparse-checkout: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slash-command-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Trim description and merge
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
sparse-checkout: |
tools/ci_format_pr_description.js
Expand Down
Loading