Skip to content

Commit 9e8fcf6

Browse files
committed
Fixing CI
1 parent bed6a33 commit 9e8fcf6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
2626
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@v2
27+
uses: github/codeql-action/init@v3
2828
with:
2929
languages: ${{ matrix.language }}
3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@v2
31+
uses: github/codeql-action/autobuild@v3
3232
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@v2
33+
uses: github/codeql-action/analyze@v3

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ jobs:
7070
${{ runner.os }}-pip-
7171
- name: Install requirements
7272
run: |
73-
python -m pip install pip wheel twine --upgrade
73+
python -m pip install pip build --upgrade
7474
pip install -r requirements.txt
7575
- name: Build a binary wheel and a source tarball
7676
run: |
77-
python setup.py sdist
77+
python3 -m build
7878
- name: Publish distribution 📦 to PyPI
79-
uses: pypa/gh-action-pypi-publish@v1.5.2
79+
uses: pypa/gh-action-pypi-publish@v1.9.0
8080
with:
8181
password: ${{ secrets.pypi_password }}
8282
release:

0 commit comments

Comments
 (0)