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
4 changes: 3 additions & 1 deletion .github/actions/python-package-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ runs:
- name: Build the package
id: build
shell: bash
env:
PYTHON_VERSION: ${{ inputs.python-version }}
run: |
uv build --python ${{ inputs.python-version }}
uv build --python "$PYTHON_VERSION"

# Set outputs
WHEEL_FILE=$(ls dist/*.whl | head -1)
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/build-test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
image-name: ${{ matrix.image-name }}
setup-qemu: ${{ matrix.needs-qemu }}

- name: Test
- name: Test Docker image
shell: bash
env:
PLATFORM: ${{ matrix.platform }}
IMAGE_NAME: ${{ matrix.image-name }}
IMAGE_TAG: ${{ inputs.image-tag }}
run: |
docker run --platform ${{ matrix.platform }} --rm ${{ matrix.image-name }}:${{ inputs.image-tag }} --version
docker run --platform "$PLATFORM" --rm "$IMAGE_NAME":"$IMAGE_TAG" --version
2 changes: 1 addition & 1 deletion .github/workflows/build-test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: build
with:
uv-version: "0.8.22"
python-version: "$PYTHON_VERSION"
python-version: "${{ env.PYTHON_VERSION }}"

- name: Upload package artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ on:
- cron: "0 0 * * 1" # every Monday at 00:00 UTC

jobs:
osv-scanner:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
container:
image: ghcr.io/google/osv-scanner:v2.1.0@sha256:9a1ba57d2a1506c9e9d0dfbeaf46346507e829745b70d47d77e12c38e66de8d7
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run OSV Scanner
run: |
/osv-scanner --format table -r .

semgrep:
if: github.event_name != 'schedule' && !startsWith(github.event.head_commit.message, 'bump:')
runs-on: ubuntu-latest
Expand All @@ -29,7 +18,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run Semgrep
run: |
semgrep scan --config auto
semgrep scan --config auto --error

twyn:
if: github.event_name != 'schedule' && !startsWith(github.event.head_commit.message, 'bump:')
Expand Down
Empty file removed .osv-scanner.toml
Empty file.
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading