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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
node: ['20', '22']
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Node ${{ matrix.node }}
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
cache: npm
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
# Full history so the scan covers every commit, not just the tip.
fetch-depth: 0
Expand All @@ -79,7 +79,7 @@ jobs:
# Pinned to a release tag. Never use @master or @main for a third-party
# action: a mutable ref is a remote-code-execution path into CI.
# Dependabot keeps this pin current (.github/dependabot.yml).
uses: trufflesecurity/trufflehog@v3.88.0
uses: trufflesecurity/trufflehog@v3.96.0
with:
path: ./
# --only-verified keeps this a blocking gate rather than a noise
Expand Down Expand Up @@ -110,10 +110,10 @@ jobs:
needs: validate
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Node
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '20'
cache: npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
environment: npm-publish
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Node
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '20'
cache: npm
Expand Down