Thanks to visit codestin.com
Credit goes to github.com

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
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3

Check warning

Code scanning / zizmor

detects commit SHAs that don't match their version comment tags Warning

detects commit SHAs that don't match their version comment tags
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand All @@ -62,6 +62,6 @@
pip install -e .
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3

Check warning

Code scanning / zizmor

detects commit SHAs that don't match their version comment tags Warning

detects commit SHAs that don't match their version comment tags
with:
category: "/language:${{matrix.language}}"
10 changes: 5 additions & 5 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
ref: ${{ inputs.ref }}
persist-credentials: false
- name: Build wheels
uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
env:
CIBW_BUILD: "cp3*-${{ matrix.buildplat }}"
CIBW_PRERELEASE_PYTHONS: "True"
Expand All @@ -47,7 +47,7 @@ jobs:
ls wheelhouse/*cp313*.whl
ls wheelhouse/*cp314*.whl

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheel-${{ matrix.buildplat }}
path: ./wheelhouse/*.whl
Expand All @@ -72,7 +72,7 @@ jobs:
check-manifest -v
python -m build --sdist .

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: "sdist"
path: dist/*.tar.gz
Expand All @@ -83,13 +83,13 @@ jobs:
name: Download Wheels
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
- name: Flatten directory
working-directory: .
run: |
find . -mindepth 2 -type f -exec mv {} . \;
find . -type d -empty -delete
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: all-dist-${{ github.run_id }}
path: "./*"
2 changes: 1 addition & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: all-dist-${{ github.run_id }}
path: dist/
Expand Down
Loading