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
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
groups:
github-actions:
patterns: ["*"]
schedule:
interval: "weekly"
cooldown:
default-days: 7
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
# Version range or exact version of a Python version to use, using SemVer's version range syntax.
python-version: "3.12"
Expand All @@ -52,7 +52,7 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse

- name: Upload Wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
path: ./wheelhouse/*.whl
name: wheels-artifact
Expand All @@ -62,7 +62,7 @@ jobs:
run: python setup.py sdist --formats=gztar

- name: Upload Source Distribution
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
# Updated the path to match the new .tar.gz file extension
path: ./dist/*.tar.gz
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
# Version range or exact version of a Python version to use, using SemVer's version range syntax.
python-version: "3.12"
Expand All @@ -47,7 +47,7 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse

- name: Upload Wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
path: ./wheelhouse/*.whl
name: wheels-artifact
Expand All @@ -57,7 +57,7 @@ jobs:
run: python setup.py sdist --formats=gztar

- name: Upload Source Distribution
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
# Updated the path to match the new .tar.gz file extension
path: ./dist/*.tar.gz
Expand All @@ -73,12 +73,12 @@ jobs:
id-token: write # Ensure this is set correctly for trusted publishing
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') # Corrected condition to check for tag format
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
name: wheels-artifact
path: dist

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
name: source-dist-artifact
path: dist
Expand Down
Loading