File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -121,24 +121,24 @@ jobs:
121121 runs-on : ubuntu-latest
122122 needs : build
123123 steps :
124- - uses : actions/checkout@v2
124+ - uses : actions/checkout@v3
125125 with :
126126 ref : master
127127 token : ${{ secrets.TOKEN }}
128- - uses : actions/download-artifact@v2
128+ - uses : actions/download-artifact@v3
129129 with :
130130 name : meta
131131 path : .
132132 - name : Use Node.js
133- uses : actions/setup-node@v1
133+ uses : actions/setup-node@v3
134134 with :
135- node-version : 12.x
135+ node-version : 16
136136 - name : Prepare build
137137 id : set-version
138138 run : |
139139 VERSION=`cat .version`
140140 NEXT_VERSION=`cat .version | awk -F. '/[0-9]+\./{$NF++;print}' OFS=.`
141- echo ::set-output name=name::`cat .name`
141+ echo ::set-output name=name::`cat .name` >> $GITHUB_OUTPUT
142142 tmp=$(mktemp)
143143 git config --global user.name 'ProjectBot'
144144 git config --global user.email '[email protected] '
You can’t perform that action at this time.
0 commit comments