Skip to content

Commit d868ea3

Browse files
fix(deps): update all dependencies j:cdx-227
1 parent b227a28 commit d868ea3

File tree

32 files changed

+961
-573
lines changed

32 files changed

+961
-573
lines changed

.github/actions/e2e-clean/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
runs:
88
using: composite
99
steps:
10-
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
10+
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
1111
with:
1212
cache: 'npm'
1313
node-version-file: '.nvmrc'

.github/actions/e2e-login/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ runs:
4343
run: |
4444
echo "${{ env.E2E_TOKEN_PASSPHRASE }}" | gpg -a --batch --passphrase-fd 0 --symmetric --cipher-algo AES256 --output encodedConfig $CLI_CONFIG_PATH
4545
echo "cliConfigJson=$(base64 -w 0 encodedConfig)" >> $GITHUB_OUTPUT
46-
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
46+
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
4747
if: cancelled() || failure() || success()
4848
with:
4949
name: login-test-artifacts

.github/actions/e2e-run/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ runs:
3737
git config --global core.autocrlf false
3838
git config --global core.eol lf
3939
40-
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
40+
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
4141
with:
4242
cache: 'npm'
4343
node-version-file: '.nvmrc'
44-
- uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b # v4
44+
- uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4
4545
with:
4646
cache: 'pip'
47-
python-version: '3.10'
47+
python-version: '3.14'
4848
- name: Install Mitmproxy through pip
4949
shell: bash
5050
run: pip install -r packages/cli-e2e/mitmproxy/requirements.txt
@@ -77,7 +77,7 @@ runs:
7777
npm_config_registry: ${{inputs.npmRegistry}}
7878
working-directory: packages/cli-e2e
7979
run: npm run jest:ci -- ${{inputs.spec}} ${{inputs.flag}}
80-
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
80+
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
8181
if: cancelled() || failure() || success()
8282
with:
8383
name: ${{inputs.os}}-${{inputs.node}}-${{inputs.spec}}-test-artifacts

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'Setup Node.js, restore cache, and install dependencies'
44
runs:
55
using: 'composite'
66
steps:
7-
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
7+
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
88
with:
99
cache: 'npm'
1010
node-version-file: '.nvmrc'

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: 'ubuntu-latest'
1212
steps:
1313
- name: Harden the runner (Audit all outbound calls)
14-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
14+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1515
with:
1616
egress-policy: audit
1717

18-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
18+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1919
- uses: ./.github/actions/setup-node
2020
- name: Lint
2121
run: npm run lint
@@ -24,11 +24,11 @@ jobs:
2424
runs-on: 'ubuntu-latest'
2525
steps:
2626
- name: Harden the runner (Audit all outbound calls)
27-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
27+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2828
with:
2929
egress-policy: audit
3030

31-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
31+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
3232
- uses: ./.github/actions/setup-node
3333
- name: Build
3434
run: npm run build

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232

3333
steps:
3434
- name: Harden the runner (Audit all outbound calls)
35-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
35+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
3636
with:
3737
egress-policy: audit
3838

3939
- name: Checkout repository
40-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
40+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3
42+
uses: github/codeql-action/init@5d5cd550d3e189c569da8f16ea8de2d821c9bf7a # v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
config-file: .github/codeql/config.yml
4646

4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3
48+
uses: github/codeql-action/analyze@5d5cd550d3e189c569da8f16ea8de2d821c9bf7a # v3

.github/workflows/git-lock-fail.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Harden the runner (Audit all outbound calls)
17-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
17+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1818
with:
1919
egress-policy: audit
2020

.github/workflows/git-lock-success.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Harden the runner (Audit all outbound calls)
17-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
17+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1818
with:
1919
egress-policy: audit
2020

.github/workflows/merge-bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
1515
steps:
1616
- name: Harden the runner (Audit all outbound calls)
17-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
17+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1818
with:
1919
egress-policy: audit
2020

21-
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
21+
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
2222
- name: Run the Bot
2323
run: npx @coveo/merge-bot

.github/workflows/package-lock-root-fail.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Harden the runner (Audit all outbound calls)
25-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
25+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2626
with:
2727
egress-policy: audit
2828

0 commit comments

Comments
 (0)