Skip to content

chore(deps): update actions/cache action to v5 #41

chore(deps): update actions/cache action to v5

chore(deps): update actions/cache action to v5 #41

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- run: python3 -m pip install --upgrade pip
- id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v5
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: |
python3 -m pip install -r requirements.txt
mkdocs build