From 19df2d522ccd357c94f22c24e35f2172b68dbac7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 18:40:52 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/marketcaster-cycle.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 822acfa..e7f14c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Node uses: actions/setup-node@v7 diff --git a/.github/workflows/marketcaster-cycle.yml b/.github/workflows/marketcaster-cycle.yml index d137df1..f7f1cb3 100644 --- a/.github/workflows/marketcaster-cycle.yml +++ b/.github/workflows/marketcaster-cycle.yml @@ -186,21 +186,21 @@ jobs: steps: - name: Check out deployment repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: path: deployment persist-credentials: false - name: Check out engine from caller if: ${{ inputs.engine_repository == '' }} - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: path: engine persist-credentials: false - name: Check out public engine if: ${{ inputs.engine_repository != '' }} - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: ${{ inputs.engine_repository }} ref: ${{ inputs.engine_ref }}