Skip to content

Commit 073332f

Browse files
chore(deps): update github actions j:kit-282 (#4738)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) | action | digest | `0c45773` -> `6849a64` | | [actions/checkout](https://redirect.github.com/actions/checkout) | action | digest | `692973e` -> `11bd719` | | [actions/create-github-app-token](https://redirect.github.com/actions/create-github-app-token) | action | digest | `31c86eb` -> `5d869da` | | [actions/setup-node](https://redirect.github.com/actions/setup-node) | action | digest | `1e60f62` -> `39370e3` | --- ### Configuration 📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone America/Toronto, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4zMS4zIiwidXBkYXRlZEluVmVyIjoiMzkuMzEuMyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
1 parent a3b8f8d commit 073332f

File tree

12 files changed

+51
-51
lines changed

12 files changed

+51
-51
lines changed

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
with:
1313
load-cache: 'false'
1414
cache-suffix: ${{ inputs.cache-suffix }}
15-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
15+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
1616
id: nx-cache
1717
with:
1818
path: .nx/cache

.github/actions/cdn-checks/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Runs CDN checks'
33
runs:
44
using: composite
55
steps:
6-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
6+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
77
- uses: ./.github/actions/setup
88
with:
99
cache-suffix: 'cdn'

.github/actions/e2e-quantic-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
SFDX_AUTH_JWT_KEY_FILE: server.key
2525
SFDX_AUTH_JWT_USERNAME: [email protected]
2626
SFDX_AUTH_JWT_INSTANCE_URL: https://login.salesforce.com
27-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
27+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
2828
with:
2929
path: packages/quantic/cypress/plugins/config
3030
key: quantic-cypress-config-${{ github.sha }}

.github/actions/e2e-quantic/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/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
14+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
1515
with:
1616
path: packages/quantic/cypress/plugins/config
1717
key: quantic-cypress-config-${{ github.sha }}

.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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1515
with:
1616
repository: coveo/ui-kit-prs
1717
path: prs

.github/actions/setup/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
runs:
1313
using: composite
1414
steps:
15-
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
15+
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
1616
with:
1717
registry-url: 'https://registry.npmjs.org'
1818
node-version-file: '.nvmrc'
@@ -22,23 +22,23 @@ runs:
2222
- name: Install npm
2323
run: npm i -g npm@10
2424
shell: bash
25-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
25+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
2626
id: npm-cache
2727
with:
2828
path: |
2929
**/node_modules/
3030
!.nx/cache/
3131
key: npm-${{ hashFiles('package-lock.json', 'patches/*') }}
32-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
32+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
3333
with:
3434
path: packages/quantic/force-app/main/default/staticresources
3535
key: quantic-${{ hashFiles('package-lock.json') }}}}
36-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
36+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
3737
with:
3838
path: ~/.cache/Cypress
3939
key: cy-${{ hashFiles('package-lock.json') }}
4040
- if: inputs.load-cache == 'true'
41-
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
41+
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
4242
id: nx-cache
4343
with:
4444
path: .nx/cache

.github/workflows/create-quantic-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
egress-policy: audit
2323

2424
- name: Check Out Repository
25-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
25+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2626
- name: Create cache file
2727
run: |
2828
mkdir check-SHA
2929
echo ${{ github.sha }} > github-sha.txt
3030
- name: Check SHA
3131
id: check_sha
32-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
32+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
3333
with:
3434
path: check-SHA
3535
key: check-SHA-${{ github.sha }}

.github/workflows/delete-pr-artifact-on-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
egress-policy: audit
1414

15-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
- uses: ./.github/actions/publish-pr-review-site
1717
with:
1818
token: ${{ secrets.GH_PUBLISH_TOKEN }}

.github/workflows/e2e-quantic.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
egress-policy: audit
1717

18-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1919
- uses: ./.github/actions/setup
2020
- uses: ./.github/actions/setup-sfdx
2121
- uses: ./.github/actions/e2e-quantic-setup
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
egress-policy: audit
4444

45-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
45+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4646
- uses: ./.github/actions/setup
4747
- uses: ./.github/actions/e2e-quantic
4848
with:
@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
egress-policy: audit
5959

60-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
60+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6161
- uses: ./.github/actions/setup
6262
- uses: ./.github/actions/setup-sfdx
6363
- run: npx --no-install ts-node packages/quantic/scripts/build/delete-org.ts

.github/workflows/masterbot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
with:
2222
egress-policy: audit
2323

24-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
24+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2525
with:
2626
fetch-depth: 0
27-
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
27+
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
2828
with:
2929
registry-url: 'https://registry.npmjs.org'
3030
node-version-file: '.nvmrc'

0 commit comments

Comments
 (0)