diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..92e568b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.github/workflows/BuildPR.yml b/.github/workflows/BuildPR.yml index 6f94410..be2779b 100644 --- a/.github/workflows/BuildPR.yml +++ b/.github/workflows/BuildPR.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - xcode: [ Xcode_12.5, Xcode_13.1, Xcode_13.2.1, Xcode_13.0, Xcode_12.4 ] + xcode: [ Xcode_12.4, Xcode_12.5, Xcode_13.1, Xcode_13.2.1 ] steps: - name: Checkout uses: actions/checkout@v2.3.4 @@ -19,5 +19,5 @@ jobs: - name: Set XCode Version run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app - name: Build project - run: set -o pipefail && xcodebuild -workspace MGScopeBar.xcodeproj/project.xcworkspace -scheme MGScopeBar archive | xcpretty + run: xcodebuild -workspace MGScopeBar.xcodeproj/project.xcworkspace -scheme MGScopeBar archive ARCHS="arm64 x86_64"