diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 202ae236..c0b195d2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,7 @@ updates: directory: "/" schedule: interval: "monthly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aae0b7b8..029d712b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go_version: ["1.21", "1.22"] + go_version: + - "1.22" + - "1.23" container: image: quay.io/prometheus/golang-builder:${{ matrix.go_version }}-base env: @@ -16,6 +18,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: prometheus/promci@v0.0.2 + - uses: prometheus/promci@45166329da36d74895901808f1c8c97efafc7f84 # v0.3.0 - uses: ./.github/promci/actions/setup_environment - run: make test diff --git a/go.mod b/go.mod index cd328684..d3f52628 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/prometheus/exporter-toolkit -go 1.21 +go 1.22 require ( github.com/alecthomas/kingpin/v2 v2.4.0