From 24e1f810ae405d4035d401e5622cc6b9d99c21d1 Mon Sep 17 00:00:00 2001 From: danthorpe Date: Tue, 7 May 2024 22:12:54 +0100 Subject: [PATCH] ci --- .github/dependabot.yml | 14 ++++++++++++++ .github/workflows/main.yml | 21 +-------------------- 2 files changed, 15 insertions(+), 20 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..a16b80c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + commit-message: + prefix: 'bot: ' + - package-ecosystem: swift + directory: / + schedule: + interval: weekly + commit-message: + prefix: 'bot: ' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 711557b..97d22d5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,25 +13,6 @@ concurrency: cancel-in-progress: true jobs: - analysis: - name: Static Analysis - if: github.event_name != 'workflow_dispatch' - uses: danthorpe/ci/.github/workflows/static-analysis.yml@main - permissions: - actions: read - contents: read - security-events: write - with: - matrix: > - { - "include": [ - { - "os": "macos-14", - "swift": "latest", - "xcode": "latest" - } - ] - } swift-package-test: name: Test Swift Package @@ -57,5 +38,5 @@ jobs: ci: name: CI if: github.event_name == 'push' - needs: [analysis, swift-package-test] + needs: [swift-package-test] uses: danthorpe/ci/.github/workflows/ci.yml@main