chore: release 9.6.0 #326
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Update Lockfiles (bun.lock + Podfile.lock)" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/update-lockfiles.yml" | |
| - "package.json" | |
| - "**/package.json" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/update-lockfiles.yml" | |
| - "package.json" | |
| - "**/package.json" | |
| permissions: | |
| contents: write | |
| jobs: | |
| update-lockfiles: | |
| name: "Update lockfiles (Podfile.lock)" | |
| if: github.actor == 'dependabot[bot]' | |
| runs-on: macOS-26 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Setup Ruby (bundle) | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.7.2 | |
| bundler-cache: true | |
| working-directory: example/ios | |
| - name: Select Xcode 26.2 | |
| run: sudo xcode-select -s "/Applications/Xcode_26.2.app/Contents/Developer" | |
| - run: | | |
| bun install | |
| cd example | |
| bundle install | |
| bun pods | |
| cd .. | |
| git add bun.lock | |
| git add example/ios/Podfile.lock | |
| git add example/Gemfile.lock | |
| git config --global user.name 'dependabot[bot]' | |
| git config --global user.email 'dependabot[bot]@users.noreply.github.com' | |
| git commit --amend --no-edit | |
| git push --force |