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/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- { os: macos-15-intel, plat: macOS, arch: x86_64 }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # setuptools-scm needs full history + tags

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
ARCH="${{ matrix.arch }}" bash packaging/macos/make_dmg.sh
mv PyReconstruct-*.dmg dist-assets/

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: installer-${{ matrix.plat }}-${{ matrix.arch }}
path: dist-assets/*
Expand All @@ -127,10 +127,10 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4 # needed for packaging/linux/ + release notes
- uses: actions/checkout@v7 # needed for packaging/linux/ + release notes
with:
fetch-depth: 0 # full history + tags for the changelog link
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: dist
merge-multiple: true
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
fi
} > release_body.md
echo "----- release_body.md -----"; cat release_body.md
- uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v3
with:
files: dist/*
prerelease: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v7
with:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 30 # headroom for the cold wheel install (vtk/scipy/PySide6/...)
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v7
with:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: read the update type
id: meta
uses: dependabot/fetch-metadata@v2
uses: dependabot/fetch-metadata@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
Loading