From 2e5bd31b4b2b0f235ae32aee95e36c1a4853b575 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 05:14:07 +0000 Subject: [PATCH] chore(actions)(deps): bump the actions group across 1 directory with 6 updates Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `7` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/setup-node` from 4 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v7) 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 `actions/setup-python` from 5 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v7) Updates `actions/setup-go` from 5 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v7) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/services.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/services.yml b/.github/workflows/services.yml index 28c49855..d895053f 100644 --- a/.github/workflows/services.yml +++ b/.github/workflows/services.yml @@ -48,7 +48,7 @@ jobs: typescript: ${{ steps.filter.outputs.typescript }} chaos: ${{ steps.filter.outputs.chaos }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - id: filter @@ -94,8 +94,8 @@ jobs: # container. A unique name avoids collisions when runner capacity grows. TEST_COMPOSE_PROJECT: singlewindow-test-db-${{ github.run_id }}-${{ github.job }} steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: ${{ env.NODE_VERSION }} cache: npm @@ -107,7 +107,7 @@ jobs: run: scripts/test-with-postgres.sh --reporter=verbose - name: Upload TypeScript test artifacts if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: typescript-test-artifacts path: | @@ -137,8 +137,8 @@ jobs: - 16379:16379 - 16380:16380 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-python@v7 with: python-version: "3.11" - name: Wait for Toxiproxy API readiness @@ -159,7 +159,7 @@ jobs: run: pytest -q tests/chaos/test_quorum_fence_toxiproxy.py --junitxml=chaos-fence-junit.xml - name: Upload quorum-fence test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: chaos-fence-results path: chaos-fence-junit.xml @@ -181,15 +181,15 @@ jobs: run: working-directory: services/go/${{ matrix.service }} steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} - name: Run race-enabled tests and collect coverage run: go test -race -coverprofile=coverage.out ./... - name: Upload Go coverage if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: go-${{ matrix.service }}-coverage path: services/go/${{ matrix.service }}/coverage.out @@ -209,13 +209,13 @@ jobs: run: working-directory: services/rust/${{ matrix.service }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ env.RUST_TOOLCHAIN }} components: clippy, rustfmt - name: Cache Cargo registry and build outputs - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -230,7 +230,7 @@ jobs: run: cargo test --all-targets - name: Upload Rust binaries and test artifacts if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: rust-${{ matrix.service }}-artifacts path: | @@ -246,8 +246,8 @@ jobs: run: working-directory: services/go/mojaloop-gateway steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} - name: Generate ephemeral JWS key @@ -266,8 +266,8 @@ jobs: run: working-directory: services/go/workflow-service steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} - name: Run health handler tests