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/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: |
github.event.pull_request.merged == true && startsWith(github.event.label.name, 'backport-')
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
token: ${{ steps.app-token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cachix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- nix
- maximal
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
name: Checkout

- name: Install Nix
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: "!contains(github.event.pull_request.title, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
Expand All @@ -31,7 +31,7 @@ jobs:
if: "!contains(github.event.pull_request.title, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
Expand All @@ -56,7 +56,7 @@ jobs:
if: "!contains(github.event.pull_request.title, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check for typos
uses: crate-ci/typos@master
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
uses: DeterminateSystems/nix-installer-action@main

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set default git branch (to reduce log spam)
run: git config --global init.defaultBranch main
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
uses: DeterminateSystems/nix-installer-action@main

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Build linkcheck package
run: nix build .#docs-linkcheck -Lv
Expand All @@ -126,7 +126,7 @@ jobs:
if: "!contains(github.event.pull_request.title, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 2 # slows down checkout, but we need to compare against the previous commit on push events

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Delete old branches"
uses: beatlabs/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: DeterminateSystems/nix-installer-action@main

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set default git branch (to reduce log spam)
run: git config --global init.defaultBranch main
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Delete preview for closed/merged PR
run: |
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Double check preview directory deletion
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: print latest_commit
run: echo ${{ github.sha }}

Expand All @@ -43,7 +43,7 @@ jobs:
if: ${{ needs.check_date.outputs.should_run != 'false' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: DeterminateSystems/nix-installer-action@main
- run: |
nix build .#docs -Lv
Expand Down
Loading