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/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Semantic Version Release
uses: python-semantic-release/python-semantic-release@v10.5.2
Expand Down
6 changes: 3 additions & 3 deletions docs/deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ jobs:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Python Environment
uses: ./.github/actions/setup-python-env
with:
Expand All @@ -466,7 +466,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Python Environment
uses: ./.github/actions/setup-python-env
- name: Run pre-commit
Expand Down Expand Up @@ -525,7 +525,7 @@ runs:
using: composite
steps:
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ inputs.python-version }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ inputs.python-version }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
prevents accidentally releasing un-evaluated changes.
#}
- name: Checkout Repository on Release Branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: {% raw %}${{ github.ref_name }}{% endraw %}

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

steps:
- name: Check out at new tag
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: {% raw %}${{ needs.release.outputs.tag }}{% endraw %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: bash
steps:
- name: Check out
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up the environment
uses: ./.github/actions/setup-python-env
Expand Down