diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index e470e51..c84bb3b 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -119,7 +119,7 @@ jobs: if [ -n "${GITHUB_TOKEN-}" ]; then direnv exec . bash -Eeux -o pipefail -c 'echo "${GOPRIVATE:-}${GOPRIVATE+,}" | while read -d , -r LINE; do echo "set git config: ${LINE}"; git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@${LINE}".insteadOf "https://${LINE}"; done' fi - - uses: golangci/golangci-lint-action@v6.0.1 # ref. https://github.com/golangci/golangci-lint-action#how-to-use + - uses: golangci/golangci-lint-action@v7.0.0 # ref. https://github.com/golangci/golangci-lint-action#how-to-use with: working-directory: ${{ env.WORKDIR }} args: --timeout=600s diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 3f5516b..dec87d1 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -127,7 +127,7 @@ jobs: set -Eeu -o pipefail -x direnv allow . direnv exec . make test - - uses: codecov/codecov-action@v4 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action + - uses: codecov/codecov-action@v5 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action with: token: ${{ secrets.CODECOV_TOKEN }} files: ${{ env.WORKDIR }}/coverage.txt