chore(deps): update dependency nicklockwood/swiftformat to from: "0.5… #201
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 | |
on: | |
push: | |
branches: | |
- 'renovate/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
update: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES | |
- run: xcodebuild -workspace BeMatch.xcworkspace -resolvePackageDependencies -scheme "App (Staging project)" -skipMacroValidation | |
- run: xcodebuild -workspace PicMatch.xcworkspace -resolvePackageDependencies -scheme "App (Staging project)" -skipMacroValidation | |
- run: xcodebuild -workspace TapMatch.xcworkspace -resolvePackageDependencies -scheme "App (Staging project)" -skipMacroValidation | |
- run: xcodebuild -workspace TenMatch.xcworkspace -resolvePackageDependencies -scheme "App (Staging project)" -skipMacroValidation | |
- run: xcodebuild -workspace Trinket.xcworkspace -resolvePackageDependencies -scheme "App (Staging project)" -skipMacroValidation | |
- run: swift build -c release --package-path ./SwiftScripts/ApolloTool | |
- run: swift build -c release --package-path ./SwiftScripts/SwiftFormatTool --product swiftformat | |
- run: swift build -c release --package-path ./SwiftScripts/XCTemplateInstallerTool --product XCTemplateInstaller | |
- continue-on-error: true | |
run: | | |
git config --local user.name 'github-actions[bot]' | |
git config --local user.email 'github-actions[bot]@users.noreply.github.com' | |
git commit -am "chore: 🤖 update package.resolved" | |
git push |