Skip to content

Update Podfile.lock #158

Update Podfile.lock

Update Podfile.lock #158

Workflow file for this run

name: Renovate Repair
on:
push:
branches:
- "renovate/cocoapods/*"
jobs:
cocoapods:
runs-on: macos-13
if: ${{ github.actor == 'renovate[bot]' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version-file: ".java-version"
- name: Bundle Install
run: bundle install
- name: Pod install
run: bundle exec pod install
- name: Configure Deploy Key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.RENOVATE_REPAIR_DEPLOY_KEY }}
- name: Commit Podfile.lock
run: |
git config --global user.name 'Renovate Repair'
git config --global user.email '[email protected]'
git remote set-url origin [email protected]:CruGlobal/godtools-swift.git
git commit -am "Update Podfile.lock"
git push