Skip to content

Commit 9b1833d

Browse files
authored
Merge branch 'main' into tr/update-renovate-frequency
2 parents 457490d + f0aa1d3 commit 9b1833d

File tree

11 files changed

+584
-367
lines changed

11 files changed

+584
-367
lines changed

Diff for: .github/workflows/actions/download-archive/action.yml

+1-1
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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
13+
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
1414
with:
1515
name: ${{ inputs.name }}
1616
path: ${{ inputs.path }}

Diff for: .github/workflows/actions/get-core-dependencies/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
# jobs that need a different version of the Node runtime should explicitly
88
# set their node version after running this step
99
- name: Use Node Version from Volta
10-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
10+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
1111
with:
1212
node-version-file: './package.json'
1313
cache: 'npm'

Diff for: .github/workflows/actions/publish-npm/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
shell: bash
1919

2020
- name: Checkout Code
21-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
21+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2222

2323
- name: Get Core Dependencies
2424
uses: ./.github/workflows/actions/get-core-dependencies

Diff for: .github/workflows/actions/upload-archive/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
run: zip -q -r ${{ inputs.output }} ${{ inputs.paths }}
1515
shell: bash
1616

17-
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
17+
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
1818
with:
1919
name: ${{ inputs.name }}
2020
path: ${{ inputs.output }}

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: 'ubuntu-latest'
1212
steps:
1313
- name: Checkout Code
14-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
14+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1515
with:
1616
# the pull_request_target event will consider the HEAD of `main` to be the SHA to use.
1717
# attempt to use the SHA associated with a pull request and fallback to HEAD of `main`

Diff for: .github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929

3030
steps:
3131
- name: Checkout Code
32-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
32+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3333
with:
3434
persist-credentials: false
3535
- name: Use Node from Volta
36-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
36+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
3737
with:
3838
node-version-file: 'package.json'
3939
cache: 'npm'

Diff for: .github/workflows/release-dev.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
dev-version: ${{ steps.generate-dev-version.outputs.DEV_VERSION }}
1818
steps:
1919
- name: Checkout Code
20-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
20+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2121

2222
- name: Generate Dev Version
2323
id: generate-dev-version
@@ -44,7 +44,7 @@ jobs:
4444
id-token: write
4545
steps:
4646
- name: Checkout Code
47-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
47+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4848
- uses: ./.github/workflows/actions/publish-npm
4949
with:
5050
tag: dev

0 commit comments

Comments
 (0)