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/move-major-minor-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-pre_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
depth=$(expr ${{ github.event.pull_request.commits }} + 1)
echo "base-depth=$depth"
echo "base-depth=$depth" >> $GITHUB_OUTPUT
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: ${{ inputs.lfs }}
# for non PR events, check out to depth 1 (the default)
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Install pre-commit with uv
run: uv tool install pre-commit
- name: Cache for pre-commit hooks
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-python-build_poetry_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
lfs: ${{ inputs.lfs }}
fetch-depth: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
lfs: ${{ inputs.lfs }}
fetch-depth: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
RECIPE_PATH: ${{ inputs.recipe-path || format('{0}/{1}', inputs.source-path || '.', 'recipe.yaml') }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
lfs: ${{ inputs.lfs }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-pytest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pytest on any OS
name: Pytest on any OS

on:
workflow_call:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
shell: 'bash -l {0}'
timeout-minutes: ${{ inputs.timeout-minutes }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: ${{ inputs.lfs }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-static_analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Static analysis
name: Static analysis

on:
workflow_call:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
shell: 'bash -l {0}'
timeout-minutes: ${{ inputs.timeout-minutes }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: ${{ inputs.lfs }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-zizmor-advanced-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-zizmor-annotate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-zizmor-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
Loading