From bbc119a86f98c07dada1dc3624ab22a57c355150 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 04:30:54 +0000 Subject: [PATCH] chore(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [crate-ci/typos](https://github.com/crate-ci/typos). Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) Updates `crate-ci/typos` from 1.47.0 to 1.47.2 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.47.0...v1.47.2) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: crate-ci/typos dependency-version: 1.47.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/auth-contract-e2e.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/e2e-live.yml | 2 +- .github/workflows/e2e-pr-smoke.yml | 2 +- .github/workflows/e2e-prod.yml | 2 +- .github/workflows/typos.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/auth-contract-e2e.yml b/.github/workflows/auth-contract-e2e.yml index f2d079d..bf77632 100644 --- a/.github/workflows/auth-contract-e2e.yml +++ b/.github/workflows/auth-contract-e2e.yml @@ -196,7 +196,7 @@ jobs: - name: Upload round-trip trace on failure if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: auth-roundtrip-trace-${{ github.run_id }} path: | diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4b83bd5..5a1220d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -24,7 +24,7 @@ jobs: cache: npm - run: npm ci - run: npm test -- --coverage - - uses: codecov/codecov-action@v6 + - uses: codecov/codecov-action@v7 if: always() with: fail_ci_if_error: false diff --git a/.github/workflows/e2e-live.yml b/.github/workflows/e2e-live.yml index 091fd97..a78594c 100644 --- a/.github/workflows/e2e-live.yml +++ b/.github/workflows/e2e-live.yml @@ -124,7 +124,7 @@ jobs: - name: Upload LIVE trace + ledger on failure if: failure() && env.RUN_LIVE == '1' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: e2e-live-trace-${{ github.run_id }} path: | diff --git a/.github/workflows/e2e-pr-smoke.yml b/.github/workflows/e2e-pr-smoke.yml index 2618cdc..ca28397 100644 --- a/.github/workflows/e2e-pr-smoke.yml +++ b/.github/workflows/e2e-pr-smoke.yml @@ -166,7 +166,7 @@ jobs: - name: Upload trace on failure if: failure() && env.RUN == '1' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: e2e-pr-smoke-trace-${{ github.run_id }} path: | diff --git a/.github/workflows/e2e-prod.yml b/.github/workflows/e2e-prod.yml index 92bf1b2..f73b724 100644 --- a/.github/workflows/e2e-prod.yml +++ b/.github/workflows/e2e-prod.yml @@ -204,7 +204,7 @@ jobs: - name: Upload LIVE trace + ledger on failure if: failure() && env.RUN == '1' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: e2e-prod-trace-${{ github.run_id }} path: | diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 24f1d38..661d167 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -15,5 +15,5 @@ jobs: timeout-minutes: 3 steps: - uses: actions/checkout@v6 - - uses: crate-ci/typos@v1.47.0 + - uses: crate-ci/typos@v1.47.2 continue-on-error: true # warn-only — surface findings without blocking CI