From e0619a96d61eed8ee64350ca7c2543c98028f738 Mon Sep 17 00:00:00 2001 From: CoreOS Bot Date: Fri, 22 Nov 2024 13:13:27 +0000 Subject: [PATCH] =?UTF-8?q?Sync=20repo=20templates=20=E2=9A=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sync with coreos/repo-templates@7f596dd94d28d7edba69af5f35391a01384bf946. --- .github/dependabot.yml | 6 ++++++ .github/workflows/go.yml | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c4aa29d..f6d65d7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,6 +3,12 @@ version: 2 updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: ["skip-notes"] + open-pull-requests-limit: 3 - package-ecosystem: gomod directory: / schedule: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 08e5f7d..6675853 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -20,21 +20,21 @@ jobs: name: Test strategy: matrix: - go-version: [1.18.x, 1.19.x, 1.20.x] + go-version: [1.22.x, 1.23.x] runs-on: ubuntu-latest steps: - name: Set up Go 1.x - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check modules run: go mod verify - name: Test run: go test -v ./... - name: Run linter - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: - version: v1.52.2 + version: v1.61.0 args: -E=gofmt --timeout=30m0s