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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip wheel')"
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
lfs: true
submodules: recursive
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
name: Build & Deploy docs
if: "!contains(github.event.head_commit.message, 'skip docs')"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
lfs: true
submodules: recursive
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
name: Build & Test C++ (deb)
if: "!contains(github.event.head_commit.message, 'skip build')"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
lfs: true
submodules: recursive
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
CODENAME: jammy
name: Build & Push Docker
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
lfs: true
submodules: recursive
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
lfs: true
submodules: recursive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
needs: activate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
Expand Down
Loading