From 1a10216e37f72f8217d69f3a2eebddd77685aeb6 Mon Sep 17 00:00:00 2001 From: Neo2308 Date: Tue, 8 Aug 2023 15:10:01 +0530 Subject: [PATCH 1/2] Updated min supported version to go 1.18 * Updated min supported version to go 1.18 * Updated go versions used in tests to 1.18 --- .github/workflows/go.yml | 2 +- v5/go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fdfc055..fed7216 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.15 + go-version: 1.18 - name: Test run: | diff --git a/v5/go.mod b/v5/go.mod index c731d4c..64b64d7 100644 --- a/v5/go.mod +++ b/v5/go.mod @@ -1,6 +1,6 @@ module github.com/evanphx/json-patch/v5 -go 1.12 +go 1.18 require ( github.com/jessevdk/go-flags v1.4.0 From 0d1d2a12fd1b7aa08a1d02c2fee41855d44c2f1a Mon Sep 17 00:00:00 2001 From: Neo2308 Date: Tue, 8 Aug 2023 15:12:19 +0530 Subject: [PATCH 2/2] Added dependabot * Added dependabot to keep go dependencies & actions updated. --- .github/dependabot.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..75adc08 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,11 @@ +version: 2 +updates: +- package-ecosystem: "gomod" + directory: "/v5" + schedule: + interval: "daily" + open-pull-requests-limit: 10 +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" \ No newline at end of file