File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change
1
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /" # Location of package manifests
6
+ schedule :
7
+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
20
20
- macos-latest
21
21
- windows-latest
22
22
node :
23
- - 16 .x
23
+ - 20 .x
24
24
runs-on : ${{ matrix.os }}
25
25
steps :
26
26
- name : Checkout
27
- uses : actions/checkout@v3
27
+ uses : actions/checkout@v4
28
28
- name : Install Node.js
29
- uses : actions/setup-node@v3
29
+ uses : actions/setup-node@v4
30
30
with :
31
31
node-version : ${{ matrix.node }}
32
32
- name : Compile
45
45
runs-on : ubuntu-latest
46
46
steps :
47
47
- name : Checkout
48
- uses : actions/checkout@v3
48
+ uses : actions/checkout@v4
49
49
- name : Create package
50
50
run : |
51
51
npm install
57
57
env :
58
58
VSCE_PAT : ${{ secrets.VSCE_PAT }}
59
59
- name : Upload package to release
60
- uses : softprops/action-gh-release@v1
60
+ uses : softprops/action-gh-release@v2
61
61
with :
62
62
files : ' *.vsix'
You can’t perform that action at this time.
0 commit comments