Skip to content

Commit

Permalink
Update CI setup and enable Dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Jun 17, 2024
1 parent 0464b23 commit cae7ee8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- macos-latest
- windows-latest
node:
- 16.x
- 20.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Compile
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create package
run: |
npm install
Expand All @@ -57,6 +57,6 @@ jobs:
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
- name: Upload package to release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: '*.vsix'

0 comments on commit cae7ee8

Please sign in to comment.