diff --git a/.github/workflows/codacy-coverage-reporter.yaml b/.github/workflows/codacy-coverage-reporter.yaml index c4b5d7d..603db15 100644 --- a/.github/workflows/codacy-coverage-reporter.yaml +++ b/.github/workflows/codacy-coverage-reporter.yaml @@ -16,7 +16,7 @@ jobs: cache: true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6076293..9dc62b3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -96,7 +96,7 @@ jobs: cache: true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod @@ -109,7 +109,7 @@ jobs: run: go test -race -coverprofile=coverage.out -coverpkg=./... ./... -count=1 - name: Upload coverage to codecov.io - uses: codecov/codecov-action@v6.0.0 + uses: codecov/codecov-action@v6.0.1 with: files: coverage.out fail_ci_if_error: false @@ -132,7 +132,7 @@ jobs: cache: true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod @@ -148,4 +148,4 @@ jobs: run: go test -coverprofile=cover.out -coverpkg=./... ./... && go tool cover -html=cover.out -o cover.html && true - name: Upload coverage to codecov.io - uses: codecov/codecov-action@v6.0.0 + uses: codecov/codecov-action@v6.0.1