Skip to content

Commit

Permalink
bump up some github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jacexh committed Sep 6, 2023
1 parent 53e5eea commit 591e5b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
name: Check out code into Go module directory
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
name: Set up Go 1.x
with:
go-version: "^1.20"
Expand All @@ -40,7 +40,7 @@ jobs:
git commit -am 'Automated generate protobuf files' && git push origin
set -e
- name: Code Coverage Report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: coverage.txt
verbose: true
Expand All @@ -55,7 +55,7 @@ jobs:
# with:
# ref: ${{ github.event.pull_request.head.ref }}
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "12"
cache: 'yarn'
Expand All @@ -71,7 +71,7 @@ jobs:
git config --global user.email '[email protected]'
set +e
git add web
git commit -am 'Automated generate static files' && git push origin
git commit -am 'Automated generate static files' && git push origin HEAD:master
set -e
release:
Expand All @@ -86,7 +86,7 @@ jobs:
run: |
make sync-module-version version=${{ github.ref_name }}
git status
echo "::set-output name=packages::`git status | grep go.mod | awk '{ split($2,a,"/go.mod"); printf a[1]" "}'`"
echo "package=`git status | grep go.mod | awk '{ split($2,a,"/go.mod"); printf a[1]" "}'`" >> $GITHUB_OUTPUT
- name: Auto Commit
run: |
git config --global user.name 'Github Action'
Expand Down

0 comments on commit 591e5b1

Please sign in to comment.