From 7c478a97fb4f672c8bd03e9231f3e0b13ba9f461 Mon Sep 17 00:00:00 2001 From: Alessio Paciello Date: Mon, 18 Nov 2024 15:31:29 +0100 Subject: [PATCH] chore: pre-release go version 1.22 --- .github/workflows/ci.yaml | 4 +++- .promu.yml | 3 +-- go.mod | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f8e20dffc..c8a0f7e08 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,13 +35,15 @@ jobs: run: make crossbuild - name: Set version run: echo "${{ needs.calculate-tag.outputs.tag }}" | sed s/v//g > VERSION + - name: print + run: ls -lart - name: Package run: make crossbuild-tarballs - name: Archive artifacts uses: actions/upload-artifact@v3 with: name: tarballs - path: ./.tarballs/*.tar.gz + path: "*.tar.gz" commit-message: runs-on: ubuntu-latest diff --git a/.promu.yml b/.promu.yml index 73e6355e3..3b167a017 100644 --- a/.promu.yml +++ b/.promu.yml @@ -1,6 +1,5 @@ go: - # This must match .circle/config.yml. - version: 1.21 + version: 1.22 repository: path: github.com/form3tech-oss/postgres_exporter build: diff --git a/go.mod b/go.mod index deceb0cfd..3ea2cd1bc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/form3tech-oss/postgres_exporter -go 1.20 +go 1.22 require ( github.com/DATA-DOG/go-sqlmock v1.5.2