Skip to content

chore(deps): update github/codeql-action action to v3.27.5 #244

chore(deps): update github/codeql-action action to v3.27.5

chore(deps): update github/codeql-action action to v3.27.5 #244

Workflow file for this run

---
name: Release
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pull-requests: read
jobs:
release:
runs-on: ubuntu-latest
name: Release
outputs:
release_created: ${{ steps.release.outputs.release_created }}
permissions:
contents: write
pull-requests: write
steps:
- uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # v4.1.1
id: release
publish:
if: needs.release.outputs.release_created
runs-on: ubuntu-latest
name: Build and Publish
needs:
- release
permissions:
id-token: write
contents: read
strategy:
max-parallel: 4
matrix:
python-version: ["3.12"]
steps:
- uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install build
- run: |
python -m build
- uses: pypa/gh-action-pypi-publish@93e87954aa8d40d7467c30656ba421aee00d37c8 # release/v1
with:
skip-existing: true