chore(deps): Bump cryptography from 46.0.5 to 46.0.6 in the pip group across 1 directory #5222
Workflow file for this run
This file contains hidden or 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: PR Tests | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| checks: write | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Tests | |
| uses: ./.github/actions/run-unit-tests | |
| with: | |
| python-version: "3.13" | |
| os: "ubuntu-latest" | |
| is_pr: "true" | |
| postgres-tests: | |
| name: PostgreSQL Integration Tests | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| checks: write | |
| services: | |
| postgres: | |
| image: postgres:15-alpine | |
| env: | |
| POSTGRES_USER: acapy_test | |
| POSTGRES_PASSWORD: acapy_test_pass | |
| POSTGRES_DB: acapy_test_db | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| ports: | |
| - 5432:5432 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: PostgreSQL Integration Tests | |
| uses: ./.github/actions/run-postgres-tests | |
| with: | |
| python-version: "3.13" | |
| os: "ubuntu-latest" |