update the custom logging call for the new generic version #161
Workflow file for this run
This file contains 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: 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 |