diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 55042ed6..c00d32d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,12 +20,12 @@ jobs: - name: download and install uses: actions/setup-go@v5 with: - go-version: '1.22.5' + go-version: '1.23.1' - name: install protoc (protobuf) - uses: arduino/setup-protoc@v3 + uses: arduino/setup-protoc@v2 with: - version: v27.2 + version: "27.2" include-pre-releases: false - name: chmod +x diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c63d5abb..41a6afda 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,12 +19,12 @@ jobs: - name: download and install uses: actions/setup-go@v5 with: - go-version: '1.22.5' + go-version: '1.23.1' - name: install protoc (protobuf) - uses: arduino/setup-protoc@v3 + uses: arduino/setup-protoc@v2 with: - version: v27.2 + version: "27.2" include-pre-releases: false - name: chmod to allow run script diff --git a/config/version_test.go b/config/version_test.go index 19088051..2392fa10 100644 --- a/config/version_test.go +++ b/config/version_test.go @@ -57,7 +57,7 @@ func TestCheckVersionOfDaemon(t *testing.T) { versionTag = "v5.1.2" message, err := CheckVersionOfDaemon() assert.NotNil(t, err) - assert.Contains(t, err.Error(), "There is a newer version of the Daemon") + assert.Contains(t, err.Error(), "there is a newer version of the Daemon") versionTag, _ = GetLatestDaemonVersion() message, err = CheckVersionOfDaemon()