From b1151c930a14959c5319b9203665d10c263b1692 Mon Sep 17 00:00:00 2001 From: Siarhei Luskanau Date: Sun, 29 Dec 2024 23:37:07 +0100 Subject: [PATCH] Add dependabot config --- .github/dependabot.yml | 10 ++++++++++ .github/workflows/test.yaml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..10ef831 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cbccb50..9a97515 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ macos-latest, ubuntu-latest ] + os: [ macos-14, ubuntu-latest ] steps: - name: Checkout uses: actions/checkout@v4 @@ -41,6 +41,6 @@ jobs: - name: Upload Reports uses: actions/upload-artifact@v4 with: - name: Test-Reports + name: Test-Reports-${{ matrix.os }} path: build/reports if: always()