Skip to content

Commit 31cad24

Browse files
fix(deps): update all dependencies j:kit-282
1 parent b15b00c commit 31cad24

File tree

27 files changed

+6479
-1592
lines changed

27 files changed

+6479
-1592
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
name: quantic-playwright-env
1616
path: packages/quantic

.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
name: quantic-playwright-env
1010
path: packages/quantic
@@ -19,7 +19,7 @@ runs:
1919
echo "lws_disabled_url=$LWS_DISABLED_URL" >> $GITHUB_OUTPUT
2020
2121
- name: Post or update PR comment with Scratch Org links
22-
uses: actions/github-script@v6
22+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
2323
with:
2424
script: |
2525
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
registry-url: 'https://registry.npmjs.org'
2626
node-version-file: '.nvmrc'
@@ -34,7 +34,7 @@ runs:
3434
key: ${{ runner.os }}-${{ inputs.cache-prefix }}-cy-${{ github.sha }}
3535
restore-keys: |
3636
${{ runner.os }}-${{ inputs.cache-prefix }}-cy-
37-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
37+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
3838
if: inputs.save-cache != 'true' && inputs.load-cache == 'true'
3939
with:
4040
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
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
egress-policy: audit
4545

46-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
46+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4747
with:
4848
fetch-depth: 0
4949
- uses: ./.github/actions/setup
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
egress-policy: audit
8787

88-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
88+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
8989
with:
9090
ref: 'release/v3'
9191
- uses: ./.github/actions/setup
@@ -106,7 +106,7 @@ jobs:
106106
with:
107107
egress-policy: audit
108108

109-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
109+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
110110
with:
111111
ref: 'release/v3'
112112
- uses: ./.github/actions/setup
@@ -134,7 +134,7 @@ jobs:
134134
egress-policy: audit
135135

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

@@ -175,7 +175,7 @@ jobs:
175175
egress-policy: audit
176176

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

@@ -216,7 +216,7 @@ jobs:
216216
with:
217217
egress-policy: audit
218218

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

0 commit comments

Comments
 (0)