Skip to content

Commit

Permalink
Bump codecov/codecov-action from 3.1.4 to 4.5.0 (#223)
Browse files Browse the repository at this point in the history
* Bump codecov/codecov-action from 3.1.4 to 4.5.0

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 4.5.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v3.1.4...v4.5.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix docker and linter

* fix config

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Anton Kaliaev <[email protected]>
  • Loading branch information
dependabot[bot] and melekes authored Aug 19, 2024
1 parent 6158245 commit f592d0b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
go-version: ">=1.20"
check-latest: true
- run: make integration-test
- uses: codecov/codecov-action@v3.1.4
- uses: codecov/codecov-action@v4.5.0
with:
file: ./coverage.txt
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ localnet: localnode
.PHONY: localnet

localnet-start: localnet
@docker-compose -f ./test/docker-compose.yml up -d
@docker compose -f ./test/docker-compose.yml up -d
.PHONY: localnet-start

localnet-stop:
@docker-compose -f ./test/docker-compose.yml down
@docker compose -f ./test/docker-compose.yml down
.PHONY: localnet-stop

integration-test:
Expand Down
3 changes: 2 additions & 1 deletion pkg/loadtest/coordinator.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package loadtest

import (
"context"
"errors"
"fmt"
"net/http"
"sync"
Expand Down Expand Up @@ -294,7 +295,7 @@ func (c *Coordinator) receiveTestingUpdates() error {
}

case workerFailed:
return fmt.Errorf(msg.Error)
return errors.New(msg.Error)

default:
return fmt.Errorf("unexpected state from remote worker: %s", msg.State)
Expand Down
2 changes: 1 addition & 1 deletion test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ networks:
ipam:
driver: default
config:
- subnet: 192.168.10.0/16
- subnet: 192.168.0.0/16

0 comments on commit f592d0b

Please sign in to comment.