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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand All @@ -48,8 +48,8 @@

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 51 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=eggzec_smolpack&issues=AZ-TjTr7pmaU195GHcqe&open=AZ-TjTr7pmaU195GHcqe&pullRequest=13
python -m pip install numpy cibuildwheel

Check warning on line 52 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=eggzec_smolpack&issues=AZ-TjTr7pmaU195GHcqf&open=AZ-TjTr7pmaU195GHcqf&pullRequest=13

- name: Build wheels
run: python -m cibuildwheel --output-dir wheels
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
ref: ${{ github.ref }}

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand All @@ -43,8 +43,8 @@

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 46 in .github/workflows/release-pypi.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=eggzec_smolpack&issues=AZ-TjTonpmaU195GHcqc&open=AZ-TjTonpmaU195GHcqc&pullRequest=13
python -m pip install numpy cibuildwheel

Check warning on line 47 in .github/workflows/release-pypi.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=eggzec_smolpack&issues=AZ-TjTonpmaU195GHcqd&open=AZ-TjTonpmaU195GHcqd&pullRequest=13

- name: Build wheels
run: python -m cibuildwheel --output-dir wheels
Expand Down
Loading