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
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
# Pinned SHA: actions/checkout v4.2.2 (2025-01-13)
# Update via Dependabot or: gh api repos/actions/checkout/git/ref/tags/v4
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
submodules: recursive
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
#
# Pinned SHA: actions/cache v4.2.3 (2025-03-05)
- name: Cache Cargo registry and git deps
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
~/.cargo/registry
Expand All @@ -192,7 +192,7 @@ jobs:
# build-mode: none → we run the build manually below so we can control
# exactly which crates are compiled and which env vars are set.
- name: Initialise CodeQL
uses: github/codeql-action/init@fee9466b8957867761f2d78f922ab084e3e2dd17 # v3
uses: github/codeql-action/init@03e4368ac7daa2bd82b3e85262f3bf87ee112f57 # v3
with:
languages: rust
config-file: .github/codeql/codeql-config.yml
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
# ── 7. Perform CodeQL analysis & upload SARIF ────────────────────────────
# Pinned SHA: github/codeql-action v3 (same SHA as init above)
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@fee9466b8957867761f2d78f922ab084e3e2dd17 # v3
uses: github/codeql-action/analyze@03e4368ac7daa2bd82b3e85262f3bf87ee112f57 # v3
with:
category: '/language:rust'
upload: true
32 changes: 16 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: self-hosted
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -88,13 +88,13 @@ jobs:
needs: [validate]
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- run: pip install maturin
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: target/release
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -109,9 +109,9 @@ jobs:
needs: [validate]
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '${{ env.NODE_VERSION }}'
registry-url: 'https://registry.npmjs.org'
Expand All @@ -127,17 +127,17 @@ jobs:
needs: [validate]
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- uses: taiki-e/install-action@v2
with:
tool: wasm-pack@${{ env.WASM_PACK_VERSION }}
- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
Expand All @@ -153,9 +153,9 @@ jobs:
needs: [validate]
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: '1.22'
- name: Build and Tag Go FFI package
Expand All @@ -169,7 +169,7 @@ jobs:
needs: [validate]
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Publish workspace crates to crates.io
env:
Expand All @@ -186,9 +186,9 @@ jobs:
runs-on: self-hosted
needs: [publish-python, publish-npm, publish-wasm, publish-go, publish-crates]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: target/release
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -198,10 +198,10 @@ jobs:
DRY_RUN: true
run: make publish-github
- name: Generate build attestation
uses: actions/attest-build-provenance@v1
uses: actions/attest-build-provenance@v4
with:
subject-path: target/release/backend
- uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v3
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down
Loading