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:
121
121
runs-on : ubuntu-latest
122
122
needs : build
123
123
steps :
124
- - uses : actions/checkout@v2
124
+ - uses : actions/checkout@v3
125
125
with :
126
126
ref : master
127
127
token : ${{ secrets.TOKEN }}
128
- - uses : actions/download-artifact@v2
128
+ - uses : actions/download-artifact@v3
129
129
with :
130
130
name : meta
131
131
path : .
132
132
- name : Use Node.js
133
- uses : actions/setup-node@v1
133
+ uses : actions/setup-node@v3
134
134
with :
135
- node-version : 12.x
135
+ node-version : 16
136
136
- name : Prepare build
137
137
id : set-version
138
138
run : |
139
139
VERSION=`cat .version`
140
140
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
142
142
tmp=$(mktemp)
143
143
git config --global user.name 'ProjectBot'
144
144
git config --global user.email '[email protected] '
You can’t perform that action at this time.
0 commit comments