Skip to content
Closed
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
name: "IntentProof CI: Build and Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Checkout spec repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: IntentProof/intentproof-spec
ref: main
Expand All @@ -28,7 +28,7 @@ jobs:
git -C intentproof-spec fetch origin phase3-ecosystem-conformance
git -C intentproof-spec checkout FETCH_HEAD

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: "IntentProof Security: CodeQL Allowlist"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Validate allowlist expiry dates
run: bash ./scripts/check-codeql-allowlist.sh
Expand All @@ -27,7 +27,7 @@ jobs:
name: "IntentProof Security: Secret Scan"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -50,10 +50,10 @@ jobs:
matrix:
language: [javascript-typescript]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Checkout intentproof-tools for custom query pack
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: IntentProof/intentproof-tools
ref: b4c7cb147404238c59388c9fc7de963d69bc2bb3
Expand All @@ -62,7 +62,7 @@ jobs:
codeql/intentproof-extra-javascript
sparse-checkout-cone-mode: true

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: npm
Expand All @@ -71,12 +71,12 @@ jobs:
run: npm ci

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: security-and-quality,./intentproof-tools/codeql/intentproof-extra-javascript

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/dco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: "IntentProof CI: DCO"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deps-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: "IntentProof Security: Deps Allowlist"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Validate dependency allowlist expiry dates
run: bash ./scripts/check-deps-allowlist.sh
Expand All @@ -26,9 +26,9 @@ jobs:
needs: allowlist-expiry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: "20"
cache: npm
Expand All @@ -44,7 +44,7 @@ jobs:
needs: allowlist-expiry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Run OSV-Scanner gate
run: bash ./scripts/run-osv-scanner-gate.sh
26 changes: 13 additions & 13 deletions .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ jobs:
name: "IntentProof Release: Test npm Package"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.release_ref || github.ref }}

- name: Checkout spec repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: IntentProof/intentproof-spec
ref: main
path: intentproof-spec

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
Expand All @@ -70,11 +70,11 @@ jobs:
release_version: ${{ steps.release.outputs.release_version }}
npm_dist_tag: ${{ steps.release.outputs.npm_dist_tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.release_ref || github.ref }}

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
echo "EOF"
} >> "$GITHUB_OUTPUT"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: npm-release-package
path: ./*.tgz
Expand All @@ -150,11 +150,11 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ needs.pack.outputs.release_ref }}

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: npm-release-package
path: .
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
--output-signature release-attestations/SHA256SUMS.sig \
release-attestations/SHA256SUMS

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: release-signing-metadata
path: |
Expand All @@ -278,12 +278,12 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: npm-release-package
path: .
Expand Down Expand Up @@ -312,12 +312,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: npm-release-package
path: release-package

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: release-signing-metadata
path: release-signing-metadata
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-signing-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ inputs.release_ref }}

- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version: '20'
cache: 'npm'
Expand Down
Loading