Skip to content

Commit

Permalink
Merge pull request #381 from arunsathiya/master
Browse files Browse the repository at this point in the history
ci: Use GITHUB_OUTPUT envvar instead of set-output command
  • Loading branch information
lesismal authored Jan 12, 2024
2 parents 01dc03b + 99cb0f7 commit fa8749f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
go get -u github.com/lesismal/nbio/...
ulimit -n 30000
go env
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: go test
run: go test -covermode=atomic -timeout 60s -coverprofile="./coverage"
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
go get -u github.com/lesismal/nbio/...
ulimit -n 30000
go env
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: go test
run: go test -covermode=atomic -timeout 60s -coverprofile="./coverage"
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
printf "\n\ngo environment:\n\n"
go get -u github.com/lesismal/nbio/...
go env
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: go test
run: go test -covermode=atomic -timeout 60s -coverprofile="./coverage"
- name: update code coverage report
Expand Down

0 comments on commit fa8749f

Please sign in to comment.