diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e6c0197 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +# Config reference: +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fe9e834..cb7b770 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,10 +10,10 @@ jobs: publish: runs-on: [self-hosted, common] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '18' + node-version: "20" check-latest: true - run: npm install -g npm@latest - run: npm ci