Skip to content

Commit 00d7867

Browse files
build(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [agenthunt/conventional-commit-checker-action](https://github.com/agenthunt/conventional-commit-checker-action) | `2.0.0` | `2.0.1` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `agenthunt/conventional-commit-checker-action` from 2.0.0 to 2.0.1 - [Release notes](https://github.com/agenthunt/conventional-commit-checker-action/releases) - [Commits](agenthunt/conventional-commit-checker-action@v2.0.0...v2.0.1) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: agenthunt/conventional-commit-checker-action dependency-version: 2.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b6b8657 commit 00d7867

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,10 @@ jobs:
285285
RUSTFLAGS: '--cfg getrandom_backend="wasm_js"'
286286
steps:
287287
- name: Checkout sources
288-
uses: actions/checkout@v4
288+
uses: actions/checkout@v5
289289

290290
- name: Install Node.js
291-
uses: actions/setup-node@v4
291+
uses: actions/setup-node@v6
292292
with:
293293
node-version: 20
294294

.github/workflows/commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
steps:
1515
- name: check-for-cc
1616
id: check-for-cc
17-
uses: agenthunt/conventional-commit-checker-action@v2.0.0
17+
uses: agenthunt/conventional-commit-checker-action@v2.0.1
1818
with:
1919
pr-title-regex: "^(.+)(?:(([^)s]+)))?!?: (.+)"

.github/workflows/flaky.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo TESTS_RESULT=$result
6060
echo "TESTS_RESULT=$result" >>"$GITHUB_ENV"
6161
- name: download nextest reports
62-
uses: actions/download-artifact@v5
62+
uses: actions/download-artifact@v6
6363
with:
6464
pattern: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-*
6565
merge-multiple: true

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: upload results
124124
if: ${{ failure() && inputs.flaky }}
125-
uses: actions/upload-artifact@v4
125+
uses: actions/upload-artifact@v5
126126
with:
127127
name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
128128
path: output
@@ -221,7 +221,7 @@ jobs:
221221

222222
- name: upload results
223223
if: ${{ failure() && inputs.flaky }}
224-
uses: actions/upload-artifact@v4
224+
uses: actions/upload-artifact@v5
225225
with:
226226
name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
227227
path: output

0 commit comments

Comments
 (0)