Skip to content

build(deps): Bump cryptography from 45.0.7 to 46.0.1 in the pip group #1010

build(deps): Bump cryptography from 45.0.7 to 46.0.1 in the pip group

build(deps): Bump cryptography from 45.0.7 to 46.0.1 in the pip group #1010

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: at client
on:
push:
branches: [ "trunk", "dev" ]
pull_request:
branches: [ "trunk", "dev" ]
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
build:
# Don't run on PRs from a fork as the secrets aren't available
if: ${{ github.event.pull_request.head.repo.fork == false }}
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
max-parallel: 1
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout at_python
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
- name: Install dependencies, Lint with flake8, Test with pytest
run: |
sudo apt-get install python3-poetry-plugin-export
uv venv
. .venv/bin/activate
poetry export --format requirements.txt --output requirements.dev --with dev
uv pip install --require-hashes -r requirements.dev
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude .venv,.git --ignore=F824
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
mkdir keys
echo '${{secrets.BARRACUDA_ATKEYS}}' > keys/@27barracuda_key.atKeys
echo '${{secrets.AMATEUR_ATKEYS}}' > keys/@amateur93_key.atKeys
echo '${{secrets.UNIVERSALALOO_ATKEYS}}' > keys/@universal27aloo_key.atKeys
if [[ "$GITHUB_ACTOR" == "dependabot[bot]" ]]; then
echo "This is a Dependabot pull request."
export DEPENDABOT_PR=1
else
echo "This is not a Dependabot pull request."
export DEPENDABOT_PR=0
fi
python3 -m unittest discover -s test -p '*_test.py' -v