From 1bd515d87a40f77b527b57d6f66b3f5e682758d8 Mon Sep 17 00:00:00 2001 From: Michi Hoffmann Date: Mon, 12 Feb 2024 14:16:05 +0100 Subject: [PATCH 1/2] Test against Go 1.22 (#773) --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 050f0c18e..01e0b030f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: "1.21" + go-version: "1.22" - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # pin@v3.7.0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c5841048..a6b18c79a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,10 +59,10 @@ jobs: # pull requests, only run this step for a single job in the matrix. For # all other workflow triggers (e.g., pushes to a release branch) run # this step for the whole matrix. - if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.21' && matrix.os == 'ubuntu') }} + if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.22' && matrix.os == 'ubuntu') }} timeout-minutes: 15 strategy: matrix: - go: ["1.21", "1.20", "1.19", "1.18"] + go: ["1.22", "1.21", "1.20", "1.19", "1.18"] os: [ubuntu, windows, macos] fail-fast: false From 8344534af6397f72bb27a6ff549533bbcd10d89a Mon Sep 17 00:00:00 2001 From: Michi Hoffmann Date: Mon, 12 Feb 2024 14:16:13 +0100 Subject: [PATCH 2/2] Add dependabot.yml (#774) --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..fd4bcca3a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10