Skip to content

Update all dependencies #23

Update all dependencies

Update all dependencies #23

Workflow file for this run

# Simulate local contributor workflow sync process
name: "contrib"
on:
workflow_dispatch:
pull_request:
paths:
- ".github/workflows/contrib.yml"
- "scripts/Sync-Py.ps1"
- "scripts/c_therm_tci_tools/**"
- "scripts/pyproject.toml"
push:
branches: ["main"]
paths:
- ".github/workflows/contrib.yml"
- "scripts/Sync-Py.ps1"
- "scripts/c_therm_tci_tools/**"
- "scripts/pyproject.toml"
defaults:
run:
shell: "pwsh"
env:
UV_CACHE_DIR: ".cache/uv-cache"
SYNC_PY_DISABLE_CI: True
jobs:
no-spaces-in-path:
strategy:
matrix:
runner:
- "macos-14"
- "ubuntu-22.04"
- "windows-2022"
python: ["3.11"]
runs-on: "${{ matrix.runner }}"
steps:
- uses: "actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f" # v4.1.3
with:
submodules: True
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: "${{ env.UV_CACHE_DIR }}"
key: "uv-${{ matrix.runner }}-${{ matrix.python}}-${{ hashFiles('lock.json') }}"
- uses: "actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d" # v5.1.0
with:
python-version: "${{ matrix.python }}"
- run: "scripts/Sync-Py.ps1 -Lock -Version '3.11'"
spaces-in-path:
strategy:
matrix:
runner:
- "macos-13"
- "ubuntu-22.04"
- "windows-2022"
python: ["3.11"]
runs-on: "${{ matrix.runner }}"
steps:
- run: "New-Item -ItemType Directory 'repo path with spaces'"
- uses: "actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f" # v4.1.3
with:
submodules: True
path: "repo path with spaces"
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: "${{ env.UV_CACHE_DIR }}"
key: "uv-${{ matrix.runner }}-${{ matrix.python}}-${{ hashFiles('lock.json') }}"
- uses: "actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d" # v5.1.0
with:
python-version: "${{ matrix.python }}"
- working-directory: "repo path with spaces"
run: "scripts/Sync-Py.ps1 -Lock -Version '3.11'"