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
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Sync environment
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
attestations: write
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2
with:
path: bsmschema
attest-build-provenance-github: ${{ github.event_name != 'pull_request' }}
- name: Upload uv.lock
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Lockfile
path: |
Expand All @@ -61,20 +61,20 @@ jobs:
DEPENDS: ${{ matrix.dependencies }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: matrix.source == 'repo'
with:
submodules: recursive
fetch-depth: 0
- name: Download packages built by build-and-inspect-python-package
if: matrix.source == 'sdist'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Packages
path: dist
- name: Download lockfile
if: matrix.source == 'sdist'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Lockfile
- name: Extract sdist
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Packages
path: dist
Expand Down