From 6364d8f16a34c1650ff6a626a8260f8e70db7de9 Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Tue, 17 Dec 2024 13:09:27 -0500 Subject: [PATCH 1/3] Update ci.yml --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 113d696..96833ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,9 @@ on: env: CI: true +# Prevent duplicate runs if Renovate falls back to creating a PR concurrency: - group: ci-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} cancel-in-progress: true jobs: From 8ea06fc0aaa58c7a3c9228c2473b61d477339ec7 Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Wed, 18 Dec 2024 11:25:17 -0500 Subject: [PATCH 2/3] Test if ubuntu latest is the issue --- .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 96833ff..f0cd5d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ concurrency: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 From 265b862c68824a86bda9eab105a6964a91edf051 Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Wed, 18 Dec 2024 11:31:33 -0500 Subject: [PATCH 3/3] Add renovate --- renovate.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..9b89fd5 --- /dev/null +++ b/renovate.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>gsoft-inc/renovate-config", + "github>gsoft-inc/renovate-config:all-automerge.json" + ] +} \ No newline at end of file