Skip to content

Commit

Permalink
Merge pull request #591 from semyon-dev/dev
Browse files Browse the repository at this point in the history
fix tests and ci/cd
  • Loading branch information
semyon-dev authored Sep 11, 2024
2 parents 543fedd + 5ec9f55 commit 240c8f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 240c8f3

Please sign in to comment.