1818 runs-on : ubuntu-latest
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v3
2222
23- - uses : actions/setup-node@v1
23+ - uses : actions/setup-node@v3
2424 with :
2525 node-version : ' 16.14.2'
2626
@@ -47,11 +47,11 @@ jobs:
4747 # Record the VSIX path as an output of this step.
4848 # This will be used later when uploading a release asset.
4949 VSIX_PATH="$(ls dist/*.vsix)"
50- echo "::set-output name= vsix_path:: $VSIX_PATH"
50+ echo "vsix_path= $VSIX_PATH" >> "$GITHUB_OUTPUT "
5151 # Transform the GitHub ref so it can be used in a filename.
5252 # The last sed invocation is used for testing branches that modify this workflow.
5353 REF_NAME="$(echo ${{ github.ref }} | sed -e 's:^refs/tags/::' | sed -e 's:/:-:g')"
54- echo "::set-output name= ref_name:: $REF_NAME"
54+ echo "ref_name= $REF_NAME" >> "$GITHUB_OUTPUT "
5555
5656 - name : Upload artifacts
5757 uses : actions/upload-artifact@v2
@@ -107,7 +107,7 @@ jobs:
107107 # Bump to the next patch version. Major or minor version bumps will have to be done manually.
108108 # Record the next version number as an output of this step.
109109 NEXT_VERSION="$(npm version patch)"
110- echo "::set-output name= next_version:: $NEXT_VERSION"
110+ echo "next_version= $NEXT_VERSION" >> "$GITHUB_OUTPUT "
111111
112112 - name : Add changelog for next release
113113 if : success()
@@ -136,7 +136,7 @@ jobs:
136136 VSCE_TOKEN : ${{ secrets.VSCE_TOKEN }}
137137 steps :
138138 - name : Download artifact
139- uses : actions/download-artifact@v2
139+ uses : actions/download-artifact@v3
140140 with :
141141 name : vscode-codeql-extension
142142
@@ -156,7 +156,7 @@ jobs:
156156 OPEN_VSX_TOKEN : ${{ secrets.OPEN_VSX_TOKEN }}
157157 steps :
158158 - name : Download artifact
159- uses : actions/download-artifact@v2
159+ uses : actions/download-artifact@v3
160160 with :
161161 name : vscode-codeql-extension
162162
0 commit comments