Skip to content

build(deps): bump the actions group across 1 directory with 2 updates #4769

build(deps): bump the actions group across 1 directory with 2 updates

build(deps): bump the actions group across 1 directory with 2 updates #4769

Workflow file for this run

name: Test requirements.txt
on:
push:
branches:
- main
workflow_call:
inputs:
ref:
description: The branch, tag, or revision to test.
type: string
required: true
pull_request:
schedule:
- cron: "0 12 * * *"
permissions: {}
jobs:
test_requirements:
name: requirements.txt / ${{ matrix.python_version }}
runs-on: ubuntu-latest
env:
SIGSTORE_REF: ${{ inputs.ref }}
strategy:
matrix:
python_version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- name: Populate reference from context
if: ${{ env.SIGSTORE_REF == '' }}
run: |
echo "SIGSTORE_REF=${GITHUB_REF}" >> "${GITHUB_ENV}"
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ env.SIGSTORE_REF }}
persist-credentials: false
- uses: astral-sh/setup-uv@d31148d669074a8d0a63714ba94f3201e7020bc3 # v8.3.0
with:
python-version: ${{ matrix.python_version }}
- name: Run test install
run: |
uv venv
uv pip install --require-hashes --no-deps -r install/requirements.txt