Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-python-zensical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# ============================================================

- name: A1) Checkout repository code
uses: actions/checkout@v6
uses: actions/checkout@v7
# WHY: Required so all subsequent steps can access repo files.

- name: A2) Install uv (with caching)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-zensical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# ============================================================

- name: A1) Checkout repository code
uses: actions/checkout@v6
uses: actions/checkout@v7
# WHY: Required so all subsequent steps can access repo files.

- name: A2) Configure GitHub Pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: 1) Checkout repository code
uses: actions/checkout@v6
uses: actions/checkout@v7
# WHY: Required so Lychee can inspect repository files.

- name: 2) Run Lychee
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# === ASSEMBLE ===

- name: A1) Checkout repository with full history and tags
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # WHY: hatch-vcs needs full history to derive version from tags.
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# === ASSEMBLE ===

- name: A1) Checkout repository with full history and tags
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # WHY: hatch-vcs needs full history to derive version from tags.
fetch-tags: true
Expand Down
Loading