Skip to content

chore(deps): bump actions/checkout from 6 to 7 - #239

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/actions/checkout-7
Open

chore(deps): bump actions/checkout from 6 to 7#239
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/actions/checkout-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

Bumps actions/checkout from 6 to 7.

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

v6.0.1

What's Changed

Full Changelog: actions/checkout@v6...v6.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v6...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] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 1, 2026
@TheRealAgentK

Copy link
Copy Markdown
Contributor

@velocitysystems The iOS failures don’t appear to be caused by actions/checkout@v7. Checkout completes successfully, and the build reaches the final native link step.

The trigger is the workflow’s floating runs-on: macos-latest. GitHub migrated that label from macOS 15 / Xcode 16.4 to macOS 26 during June–July 2026. These failed jobs ran on macos-26-arm64 image 20260715.0248.1, whose default is Xcode 26.5. Previous iOS checks passed before that migration.

React Native 0.84’s libRCTSwiftUI.a references __swift_FORCE_LOAD_$_swiftCompatibility56. On the Xcode 26 hosted image, Apple’s separate Metal toolchain can become the effective toolchain, but it does not contain the Swift compatibility libraries, so the final link cannot resolve that symbol. This matches actions/runner-images#13135: actions/runner-images#13135

The RNScreens, safe-area, deprecated API, and “has no symbols” warnings in the log are unrelated.

The smallest forward-looking workaround is to force the default Xcode toolchain for the build:

- name: Build application
  env:
    TOOLCHAINS: com.apple.dt.toolchain.XcodeDefault
  run: npx react-native build-ios

For the lowest-risk immediate fix, pin the iOS job to the previously working environment:

demo-ios-build:
  runs-on: macos-15

I’d pin macos-15 first, then test the explicit TOOLCHAINS workaround separately before intentionally moving CI to Xcode 26.

One unrelated source of CI nondeterminism: the build scripts run npm update despite committed lockfiles. It didn’t cause this linker failure, but changing those installs to npm ci would prevent harmless PRs from resolving newer dependencies.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant