From 1a57b67e14c28c6d0dc5b05c0815a5f2b27e0b88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 23:57:13 +0000 Subject: [PATCH] build(deps): 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 | 12 ++++++------ .github/workflows/release.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66600641..6dc5cb79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: outputs: changed: ${{ steps.paths.outputs.changed }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - id: paths @@ -58,7 +58,7 @@ jobs: outputs: ipa_url: ${{ steps.upload-ipa.outputs.artifact-url }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: import signing certificate if: github.repository == 'bryanthaboi/gen1recomp' run: | @@ -106,7 +106,7 @@ jobs: name: headless suites (no ROM) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # LuaJIT, not lua5.4: LOVE 11.x embeds LuaJIT 2.1 and the engine is # written to Lua 5.1 semantics, so CI must run the interpreter the @@ -124,7 +124,7 @@ jobs: name: fixture dataset integrity runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: sudo apt-get update && sudo apt-get install -y luajit - run: python3 -m pip install --upgrade pillow @@ -166,7 +166,7 @@ jobs: name: screenshot differ (capture not yet wired) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: python3 -m pip install --upgrade pillow # 21-testing-and-ci ยง"Testing & acceptance criteria": compare_shots @@ -214,7 +214,7 @@ jobs: name: mod lint (no ROM-derived content) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # the MK305 dump check key-diffs shipped tables through luajit, and # modkit treats a missing interpreter as a fatal MK100 -- without diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index efddc626..23bf90a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: run: echo "::add-mask::$HOME" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true