Skip to content

Commit 680d507

Browse files
fix(deps): update all dependencies j:kit-282
1 parent bf2294c commit 680d507

File tree

24 files changed

+2200
-1178
lines changed

24 files changed

+2200
-1178
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js & TypeScript",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:2-22-bookworm",
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:4-22-bookworm",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

.github/actions/merge-playwright-reports/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
using: composite
2020
steps:
2121
- name: Download blob reports from GitHub Actions Artifacts
22-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
22+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
2323
with:
2424
path: ${{ inputs.working-directory }}/all-blob-reports
2525
pattern: ${{ inputs.artifact-pattern }}

.github/actions/playwright-quantic/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
runs:
1111
using: composite
1212
steps:
13-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
13+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
1414
with:
1515
pattern: quantic-playwright-env-*
1616
path: packages/quantic/.env

.github/actions/post-scratch-org-links-on-pr/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Publish Scratch Org Links as comments in a given PR
44
runs:
55
using: composite
66
steps:
7-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
7+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
88
with:
99
pattern: quantic-playwright-env-*
1010
path: packages/quantic/.env
@@ -20,7 +20,7 @@ runs:
2020
echo "lws_disabled_url=$LWS_DISABLED_URL" >> $GITHUB_OUTPUT
2121
2222
- name: Post or update PR comment with Scratch Org links
23-
uses: actions/github-script@v6
23+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
2424
with:
2525
script: |
2626
const lwsEnabledUrl = '${{ steps.read-env.outputs.lws_enabled_url }}';

.github/actions/publish-pr-review-site/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
runs:
1212
using: composite
1313
steps:
14-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1515
with:
1616
repository: coveo/ui-kit-prs
1717
path: prs

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ inputs:
2020
runs:
2121
using: composite
2222
steps:
23-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
23+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
2424
with:
2525
node-version-file: '.nvmrc'
2626
registry-url: 'https://registry.npmjs.org'
@@ -33,7 +33,7 @@ runs:
3333
key: ${{ runner.os }}-${{ inputs.cache-prefix }}-cy-${{ github.sha }}
3434
restore-keys: |
3535
${{ runner.os }}-${{ inputs.cache-prefix }}-cy-
36-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
36+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
3737
if: inputs.save-cache != 'true' && inputs.load-cache == 'true'
3838
with:
3939
name: ${{ runner.os }}-${{ inputs.cache-prefix }}-turbo

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
egress-policy: audit
4747

48-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
48+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4949
with:
5050
fetch-depth: 0
5151
- uses: ./.github/actions/setup
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
egress-policy: audit
8989

90-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
90+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
9191
with:
9292
ref: 'release/v3'
9393
- uses: ./.github/actions/setup
@@ -108,7 +108,7 @@ jobs:
108108
with:
109109
egress-policy: audit
110110

111-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
111+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
112112
with:
113113
ref: 'release/v3'
114114
- uses: ./.github/actions/setup
@@ -136,7 +136,7 @@ jobs:
136136
egress-policy: audit
137137

138138
- name: Checkout code
139-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
139+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
140140
with:
141141
ref: 'release/v3'
142142

@@ -177,7 +177,7 @@ jobs:
177177
egress-policy: audit
178178

179179
- name: Checkout code
180-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
180+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
181181
with:
182182
ref: 'release/v3'
183183

@@ -218,7 +218,7 @@ jobs:
218218
with:
219219
egress-policy: audit
220220

221-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
221+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
222222
with:
223223
ref: 'release/v3'
224224
- uses: ./.github/actions/setup

0 commit comments

Comments
 (0)