Skip to content

Commit 0ff18ec

Browse files
ci(deps): bump the github-actions group with 7 updates
Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.3.1` | `6.0.2` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.4.0` | `6.2.0` | | [actions/cache](https://github.com/actions/cache) | `4.3.0` | `5.0.3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3.1.6` | `5.5.2` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `2.4.0` | `4.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `6.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.3.0` | `7.0.0` | Updates `actions/checkout` from 4.3.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@34e1148...de0fac2) Updates `actions/setup-node` from 4.4.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@49933ea...6044e13) Updates `actions/cache` from 4.3.0 to 5.0.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0057852...cdf6c1f) Updates `codecov/codecov-action` from 3.1.6 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@ab904c4...671740a) Updates `actions/attest-build-provenance` from 2.4.0 to 4.0.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@e8998f9...e4d4f7c) Updates `actions/upload-artifact` from 4.6.2 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...b7c566a) Updates `actions/download-artifact` from 4.3.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...37930b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/attest-build-provenance dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3034a69 commit 0ff18ec

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
22+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2323

2424
- name: Setup Node.js
25-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
25+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828

@@ -37,7 +37,7 @@ jobs:
3737
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3838
3939
- name: Setup pnpm cache
40-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
40+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
4141
with:
4242
path: ${{ env.STORE_PATH }}
4343
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Upload coverage to Codecov
6060
if: matrix.node-version == '20.17.0'
61-
uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457
61+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
6262
with:
6363
file: ./coverage/lcov.info
6464
flags: unittests
@@ -71,10 +71,10 @@ jobs:
7171

7272
steps:
7373
- name: Checkout code
74-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
74+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
7575

7676
- name: Setup Node.js
77-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
77+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
7878
with:
7979
node-version: 20.17.0
8080

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2525
with:
2626
fetch-depth: 0
2727

@@ -34,7 +34,7 @@ jobs:
3434
fi
3535
3636
- name: Setup Node.js
37-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
37+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
3838
with:
3939
node-version: "22"
4040

@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Checkout code
66-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
66+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
6767
with:
6868
fetch-depth: 0
6969

@@ -76,7 +76,7 @@ jobs:
7676
fi
7777
7878
- name: Setup Node.js
79-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
79+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
8080
with:
8181
node-version: "22"
8282
registry-url: "https://registry.npmjs.org"
@@ -133,7 +133,7 @@ jobs:
133133

134134
steps:
135135
- name: Checkout code
136-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
136+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
137137
with:
138138
fetch-depth: 0
139139

@@ -147,13 +147,13 @@ jobs:
147147
148148
- name: Setup Node.js
149149
if: ${{ !matrix.node_arch }}
150-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
150+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
151151
with:
152152
node-version: "22"
153153

154154
- name: Setup Node.js (x64 via Rosetta)
155155
if: ${{ matrix.node_arch }}
156-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
156+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
157157
with:
158158
node-version: "22"
159159
architecture: ${{ matrix.node_arch }}
@@ -169,7 +169,7 @@ jobs:
169169
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
170170
171171
- name: Setup pnpm cache
172-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
172+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
173173
with:
174174
path: ${{ env.STORE_PATH }}
175175
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -211,12 +211,12 @@ jobs:
211211
Get-Content shield-windows-${{ matrix.arch }}.exe.sha256
212212
213213
- name: Generate artifact attestation
214-
uses: actions/attest-build-provenance@e8998f949152b193b063cb0ec769d69d929409be
214+
uses: actions/attest-build-provenance@e4d4f7c39adfa4c260fb5c147f0622000aa14b99
215215
with:
216216
subject-path: "shield-*"
217217

218218
- name: Upload artifacts
219-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
219+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
220220
with:
221221
name: binary-${{ matrix.platform }}-${{ matrix.arch }}
222222
path: |
@@ -235,7 +235,7 @@ jobs:
235235

236236
steps:
237237
- name: Download all artifacts
238-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
238+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
239239
with:
240240
pattern: binary-*
241241
merge-multiple: true

0 commit comments

Comments
 (0)