From b224727ecae68e5cd3d2e273844f00933228ab24 Mon Sep 17 00:00:00 2001 From: Andreas Noack Date: Mon, 19 Aug 2024 15:02:57 +0200 Subject: [PATCH 1/4] Don't limit number of dependabot PRs --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e9fa355..71749ca 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,6 @@ updates: directory: "/" schedule: interval: "daily" - open-pull-requests-limit: 1 labels: - "dependencies" - "github-actions" From 175b47e561a14b02d8c80a630921e7e68176e7af Mon Sep 17 00:00:00 2001 From: Andreas Noack Date: Mon, 19 Aug 2024 15:47:59 +0200 Subject: [PATCH 2/4] Set permissions in benchmark.yml --- .github/workflows/benchmark.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 6da6d53..844835a 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -18,6 +18,8 @@ jobs: runs-on: ubuntu-latest strategy: fail-fast: false + permissions: + pull-requests: write steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 From 73d0b79fa5587972fb907af7042b7aeb39669e11 Mon Sep 17 00:00:00 2001 From: Andreas Noack Date: Mon, 19 Aug 2024 15:54:10 +0200 Subject: [PATCH 3/4] Test on prereleases instead of nightly --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1944097..b9ad428 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: version: - '1.6' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'. - '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. - - 'nightly' + - 'pre' os: - ubuntu-latest arch: From 389a28bf29fe972426953fb92a2c8a64273be70a Mon Sep 17 00:00:00 2001 From: Andreas Noack Date: Mon, 19 Aug 2024 16:07:04 +0200 Subject: [PATCH 4/4] Use setup-julia version 2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9ad428..32995c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - x64 steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }}