build(deps): bump dagster-ssh from 0.25.2 to 0.25.3 #311
Workflow file for this run
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: uv Dependendabot Check | |
on: | |
workflow_dispatch: null | |
pull_request: | |
paths: | |
- requirements.txt | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test_requirements: | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
# https://github.com/astral-sh/setup-uv | |
- name: Python setup uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Install Python 3.12 | |
run: uv python install 3.12 | |
- name: Setup uv venv | |
run: uv venv | |
- name: Install requirements.txt | |
run: uv pip install -r requirements.txt --override overrides.txt --no-cache-dir |