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
4 changes: 2 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: taiki-e/install-action@v2
with:
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: taiki-e/install-action@v2
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
with:
components: rustfmt, clippy
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: Swatinem/rust-cache@v2
- run: cargo test --workspace --all-features --locked
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: Swatinem/rust-cache@v2
- run: cargo test -p synaptic --test mcp_e2e --all-features --locked
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: Swatinem/rust-cache@v2
- run: cargo test -p synaptic-store --all-features --locked
Expand All @@ -79,7 +79,7 @@ jobs:
env:
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: Swatinem/rust-cache@v2
- run: cargo doc --workspace --no-deps --all-features --locked
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
- uses: Swatinem/rust-cache@v2
- run: cargo test -p synaptic-extract --no-default-features --features lang-${{ matrix.lang }} --locked
2 changes: 1 addition & 1 deletion .github/workflows/code-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: read
security-events: write
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
with:
components: clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
signoff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: actions/dependency-review-action@v5
with:
fail-on-severity: high
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7.0.1
- name: Set release version
if: startsWith(github.ref, 'refs/tags/v')
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@1.97.1
with:
targets: ${{ matrix.target }}
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
tar czf "${dist}.tar.gz" "$dist"
shasum -a 256 "${dist}.tar.gz" | awk '{print $1}' > "${dist}.tar.gz.sha256"
fi
- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@v7.0.1
with:
name: synaptic-${{ matrix.target }}
path: |
Expand All @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v8
- uses: actions/download-artifact@v8.0.1
with:
path: dist
merge-multiple: true
Expand All @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@v7.0.1
- name: Sync wiki/ to the GitHub wiki
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/synaptic-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
base_sha: ${{ steps.synaptic.outputs.base_sha }}
has_verified: ${{ steps.synaptic.outputs.has_verified }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
with:
persist-credentials: false
fetch-depth: 0
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
cloud_oidc_audience: ${{ inputs.cloud_oidc_audience || 'synaptic-api-maintenance' }}
- name: Upload checksummed handoff only
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: synaptic-${{ inputs.automation_family || (github.event.schedule == '17 7 * * *' && 'dependency' || 'vulnerability') }}-${{ github.run_id }}-${{ github.run_attempt }}
path: .synaptic-ci/handoffs
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
permission-contents: write
permission-pull-requests: write
permission-workflows: write
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
with:
ref: ${{ needs.repair.outputs.base_sha }}
fetch-depth: 0
Expand All @@ -175,7 +175,7 @@ jobs:
chmod 0755 "$binary"
echo "binary=$binary" >> "$GITHUB_OUTPUT"
echo "sha256=$actual_binary" >> "$GITHUB_OUTPUT"
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: synaptic-${{ inputs.automation_family || (github.event.schedule == '17 7 * * *' && 'dependency' || 'vulnerability') }}-${{ github.run_id }}-${{ github.run_attempt }}
path: .synaptic-ci/handoffs
Expand Down
Loading