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()