Skip to content

Commit 69aa2af

Browse files
committed
Update dependencies and release workflow
1 parent 10ae0a6 commit 69aa2af

File tree

5 files changed

+384
-448
lines changed

5 files changed

+384
-448
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
tag: ${{ steps.setup-tag.outputs.tag }}
3131
version: ${{ steps.setup-tag.outputs.version }}
3232
steps:
33-
- uses: actions/checkout@v2
34-
- uses: actions/setup-node@v2
33+
- uses: actions/checkout@v3
34+
- uses: actions/setup-node@v3
3535
with:
36-
node-version: 14
36+
node-version: 16
3737
registry-url: https://registry.npmjs.org/
3838

3939
- name: Install dependencies
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
npx vsce package --out ${{ steps.setup.outputs.packageName }}
4949
50-
- uses: actions/upload-artifact@v2
50+
- uses: actions/upload-artifact@v3
5151
with:
5252
name: ${{ steps.setup.outputs.packageName }}
5353
path: ./${{ steps.setup.outputs.packageName }}
@@ -68,8 +68,8 @@ jobs:
6868
needs: package
6969
if: github.event.inputs.publishMS == 'true'
7070
steps:
71-
- uses: actions/checkout@v2
72-
- uses: actions/download-artifact@v2
71+
- uses: actions/checkout@v3
72+
- uses: actions/download-artifact@v3
7373
with:
7474
name: ${{ needs.package.outputs.packageName }}
7575
- name: Publish to VS marketplace
@@ -81,8 +81,8 @@ jobs:
8181
needs: package
8282
if: github.event.inputs.publishOVSX == 'true'
8383
steps:
84-
- uses: actions/checkout@v2
85-
- uses: actions/download-artifact@v2
84+
- uses: actions/checkout@v3
85+
- uses: actions/download-artifact@v3
8686
with:
8787
name: ${{ needs.package.outputs.packageName }}
8888
- name: Publish to OpenVSX
@@ -94,7 +94,7 @@ jobs:
9494
needs: package
9595
if: github.event.inputs.publishGH == 'true'
9696
steps:
97-
- uses: actions/download-artifact@v2
97+
- uses: actions/download-artifact@v3
9898
with:
9999
name: ${{ needs.package.outputs.packageName }}
100100

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to the VS Code CFLint extension will be documented in this file.
44

5-
## [0.3.5] - 2022-01-23
5+
## [0.3.5] - 2022-04-07
66

77
- Utilize output channel
88
- Allowed `cflint.javaPath` setting to be directory instead of just file path

0 commit comments

Comments
 (0)