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
4 changes: 2 additions & 2 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
target: ${{ fromJSON(inputs.make-target) }}
steps:
- name: Checkout 🛎
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive

Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:

- name: Pull reusable 🤖 actions️
if: ${{ inputs.actions-ref != '' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.actions-ref }}
path: .cicd
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-md-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
MODIFIED_ONLY: "no"
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Create local version of config
if: ${{ inputs.config-file == '' }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/check-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
matrix: ${{ fromJSON(inputs.build-matrix) }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # checkout entire history for all branches (required when using scm-based versioning)
submodules: recursive
Expand All @@ -88,7 +88,7 @@ jobs:
enable-cache: true

- name: Pull reusable 🤖 actions️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.actions-ref }}
path: .cicd
Expand All @@ -114,7 +114,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Pull reusable 🤖 actions️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.actions-ref }}
path: .cicd
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
matrix: ${{ fromJSON(inputs.testing-matrix) }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
# NOTE: use pip as gold standard for package validation
Expand All @@ -169,7 +169,7 @@ jobs:
python-version: ${{ matrix.python-version || '3.x' }}

- name: Pull reusable 🤖 actions️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.actions-ref }}
path: .cicd
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up uv and Python
Expand All @@ -41,7 +41,7 @@ jobs:
# if actions version is given install defined versions
- name: "[optional] Pull reusable 🤖 actions"
if: inputs.actions-ref != ''
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.actions-ref }}
path: .cicd
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
UV_TORCH_BACKEND: cpu
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive

Expand All @@ -56,7 +56,7 @@ jobs:

- name: Pull reusable 🤖 actions️
if: ${{ inputs.actions-ref != '' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.actions-ref }}
path: .cicd
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout 🛎
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up uv and Python 🐍 ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout 🛎
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up uv and Python 🐍 ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
with:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
UV_TORCH_BACKEND: cpu
steps:
- name: Checkout 🛎
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up uv and Python 🐍 ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
UV_TORCH_BACKEND: cpu
steps:
- name: Checkout 🛎
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up uv and Python 🐍 ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cleanup-caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
AGE_DAYS: ${{ inputs.age-days }}
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up uv and Python
uses: astral-sh/setup-uv@v7
Expand All @@ -49,7 +49,7 @@ jobs:
enable-cache: true

- name: Pull reusable 🤖 actions️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.scripts-ref }}
path: .cicd
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
UV_TORCH_BACKEND: cpu
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
# If you're using actions/checkout@v5 you must set persist-credentials to false in most cases for the deployment to work correctly.
uses: actions/checkout@v6
# If you're using actions/checkout@v6 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
submodules: recursive
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up uv and Python 🐍
uses: astral-sh/setup-uv@v7
with:
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download 📥 artifact
uses: actions/download-artifact@v6
with:
Expand All @@ -70,7 +70,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
- name: Download 📥 artifact
Expand Down
Loading