build(deps): Bump ghastoolkit from 0.14.0 to 0.15.1 in the production-dependencies group across 1 directory #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Action Build & Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
# Run the tests on all supported versions of Python | |
testing: | |
uses: advanced-security/reusable-workflows/.github/workflows/python-testing.yml@v0.2.0 | |
secrets: inherit | |
with: | |
versions: "3.9,3.10,3.11,3.12" | |
# Vendor the dependencies into the repository if needed | |
vendoring: | |
uses: advanced-security/reusable-workflows/.github/workflows/python-vendor.yml@main | |
needs: [testing] | |
secrets: inherit | |
permissions: | |
contents: write | |
pull-requests: write | |
# Release a new version of the package | |
release: | |
uses: advanced-security/reusable-workflows/.github/workflows/python-release.yml@v0.2.0 | |
needs: [testing] | |
secrets: inherit | |
action-test: | |
runs-on: ubuntu-latest | |
needs: [testing] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run action | |
uses: ./ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |