diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 30972fd..906cfd6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,16 @@ version: 2 updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: ["skip-notes"] + open-pull-requests-limit: 3 - package-ecosystem: gomod directory: / schedule: - interval: weekly + interval: monthly open-pull-requests-limit: 10 labels: - kind/dependency diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 2abf05d..0ea8d3e 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and push container uses: coreos/actions-lib/build-container@main with: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8f2559e..a734bd8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -20,15 +20,15 @@ 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: Build @@ -36,7 +36,7 @@ jobs: - 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