From 9d911be7daadc04db0371dd861f796d087be1dbc Mon Sep 17 00:00:00 2001 From: Christian Artin Date: Sun, 22 Dec 2024 22:07:24 -0500 Subject: [PATCH] fix pipeline --- .github/workflows/ci.yaml | 8 ++++---- go.mod | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9e9647c..707452f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.23' cache: false - uses: actions/checkout@v4 - name: golangci-lint @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.23' cache: false - uses: actions/checkout@v4 - name: build @@ -44,8 +44,8 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.23' cache: false - uses: actions/checkout@v4 - name: build - run: make test \ No newline at end of file + run: make test diff --git a/go.mod b/go.mod index a73a641..daef4cf 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,8 @@ module github.com/opendwellers/partyparrotssync go 1.23 +toolchain go1.23.3 + require ( github.com/mattermost/mattermost/server/public v0.1.9 github.com/pkg/errors v0.9.1