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
6 changes: 3 additions & 3 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
echo "tag=$TAG" >> "$GITHUB_OUTPUT"

# ── 2. Checkout with full tag history (needed for forward-only check) ─
- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: steps.marker.outputs.found == 'true'
with:
fetch-depth: 0
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# ── 4. Run the bump script ────────────────────────────────────────
- name: Set up Python
if: steps.marker.outputs.found == 'true'
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
echo "Found --patch marker."
echo "found=true" >> "$GITHUB_OUTPUT"

- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: steps.marker.outputs.found == 'true'

# Build the patch bullet:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ jobs:
echo "tag=v$VERSION" >> "$GITHUB_OUTPUT"
echo "tag_ref=refs/tags/v$VERSION" >> "$GITHUB_OUTPUT"

- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: github.event_name == 'workflow_dispatch'
with:
ref: ${{ steps.requested_version.outputs.tag_ref }}
fetch-depth: 0

- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: github.event_name == 'workflow_run'
with:
ref: ${{ github.event.workflow_run.head_sha }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
# Serve from the repository root so index.html and docs/ are both reachable.
path: '.'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
12 changes: 6 additions & 6 deletions .github/workflows/patch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
name: Preflight checks
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
name: Build ${{ matrix.artifact }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand All @@ -144,7 +144,7 @@ jobs:
run: cargo install cross --git https://github.com/cross-rs/cross

- name: Cache cargo registry & build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
"stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }}"

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.artifact }}
path: stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }}
Expand All @@ -205,12 +205,12 @@ jobs:
runs-on: ubuntu-latest
name: Replace release assets
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
name: Preflight checks
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
name: Build ${{ matrix.artifact }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false

Expand All @@ -123,7 +123,7 @@ jobs:
run: cargo install cross --git https://github.com/cross-rs/cross

- name: Cache cargo registry & build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
"stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }}"

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.artifact }}
path: stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }}
Expand All @@ -189,13 +189,13 @@ jobs:
name: Create Release

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
persist-credentials: false

- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts

Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
cat release-notes.md

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ env.RELEASE_VERSION }}
target_commitish: ${{ github.sha }}
Expand Down