From cae7ee8b00fdba470ce5a3eb91680b7182682453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Mon, 17 Jun 2024 17:16:28 -0400 Subject: [PATCH] Update CI setup and enable Dependabot --- .github/dependabot.yml | 7 +++++++ .github/workflows/ci.yml | 10 +++++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..700707c --- /dev/null +++ b/.github/dependabot.yml @@ -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" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 872e70e..fb82f2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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'