File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 88 - " package.json"
99 - " **.md"
1010
11+ env :
12+ NODE_VERSION : 16
13+
1114jobs :
1215 publish-package :
1316 runs-on : ubuntu-latest
1417 steps :
1518 - name : Checkout Repository
16- uses : actions/checkout@v2
19+ uses : actions/checkout@v3
1720 with :
21+ token : ${{ secrets.ACTIONS_ACCESS_KEY }}
1822 fetch-depth : 0
1923
20- - name : Install node 14
21- uses : actions/setup-node@v2
24+ - name : Install Node.JS
25+ uses : actions/setup-node@v3
2226 with :
23- node-version : 14.x
27+ node-version : ${{ env.NODE_VERSION }}
28+ cache : ' yarn'
2429 registry-url : " https://npm.pkg.github.com"
2530 scope : " @rapidapi"
2631
2732 - name : Install root dependencies
2833 run : yarn --no-progress --non-interactive --frozen-lockfile
2934
3035 - name : Checkout GitHub Actions
31- uses : actions/checkout@v2
36+ uses : actions/checkout@v3
3237 with :
3338 repository : RapidAPI/rapidapi-github-actions
3439 ref : master
4550 - name : Publish HttpSnippet Package
4651 run : yarn publish
4752 env :
48- NODE_AUTH_TOKEN : ${{secrets.ACTIONS_ACCESS_KEY}}
53+ NODE_AUTH_TOKEN : ${{ secrets.ACTIONS_ACCESS_KEY }}
You can’t perform that action at this time.
0 commit comments