Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/coverage-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ jobs:
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install
run: pip install -e .
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install Python deps
run: pip install -e .
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/dump-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ jobs:
path: techapi
token: ${{ secrets.TECHENGINEBOT_TOKEN || secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install TechEngine
run: pip install -e .
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/refresh-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ jobs:
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install
run: pip install -e .
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/techapi-pr-validation-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,9 @@ jobs:
ref: main
path: TechAPI-main

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
# Avoid the default whole-workspace manifest search after the large
# TechAPI PR and main worktrees have been checked out.
cache-dependency-path: pyproject.toml

- name: Detect TechAPI homepage changes
id: site_changes
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/techapi-verify-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,9 @@ jobs:
path: TechAPI
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install TechEngine
run: pip install -e .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
repository: GetTechAPI/TechAPI
ref: ${{ inputs.data-ref }}
path: TechAPI
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Validate seed JSON (§9.3, §15.3)
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/verify-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,9 @@ jobs:
fetch-depth: 0
token: ${{ secrets.TECHENGINEBOT_TOKEN || secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install TechEngine
run: pip install -e .
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/verify-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ jobs:
path: TechAPI
token: ${{ secrets.TECHENGINEBOT_TOKEN || secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install TechEngine
run: pip install -e .
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/weekly-ingest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ jobs:
path: TechAPI
token: ${{ secrets.TECHENGINEBOT_TOKEN || secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install
run: pip install -e .
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/weekly-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,9 @@ jobs:
path: techapi
token: ${{ secrets.TECHENGINEBOT_TOKEN || secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip

- name: Install TechEngine
run: pip install -e .
Expand Down
Loading