diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 853bc0a13..b408e2a97 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,22 +1,28 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +# Basic `dependabot.yml` file with +# minimum configuration for three package managers version: 2 updates: # Enable version updates for npm - - package-ecosystem: 'npm' + - package-ecosystem: "npm" # Look for `package.json` and `lock` files in the `root` directory - directory: '/' + directory: "/" # Check the npm registry for updates every day (weekdays) schedule: - interval: 'weekly' + interval: "daily" + + # Enable version updates for Docker + - package-ecosystem: "docker" + # Look for a `Dockerfile` in the `root` directory + directory: "/" + # Check for updates once a week + schedule: + interval: "daily" # Enable version updates for GitHub Actions - - package-ecosystem: 'github-actions' + - package-ecosystem: "github-actions" # Workflow files stored in the default location of `.github/workflows` # You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`. - directory: '/' + directory: "/" schedule: - interval: 'weekly' + interval: "weekly" diff --git a/package-lock.json b/package-lock.json index 336c19e70..9d806efbc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,7 +25,7 @@ "@types/semver": "^7.5.8", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", - "@vercel/ncc": "^0.38.1", + "@vercel/ncc": "^0.38.3", "eslint": "^8.57.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-jest": "^29.0.1", @@ -1991,10 +1991,11 @@ "dev": true }, "node_modules/@vercel/ncc": { - "version": "0.38.1", - "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.1.tgz", - "integrity": "sha512-IBBb+iI2NLu4VQn3Vwldyi2QwaXt5+hTyh58ggAMoCGE6DJmPvwL3KPBWcJl1m9LYPChBLE980Jw+CS4Wokqxw==", + "version": "0.38.3", + "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.3.tgz", + "integrity": "sha512-rnK6hJBS6mwc+Bkab+PGPs9OiS0i/3kdTO+CkI8V0/VrW3vmz7O2Pxjw/owOlmo6PKEIxRSeZKv/kuL9itnpYA==", "dev": true, + "license": "MIT", "bin": { "ncc": "dist/ncc/cli.js" } diff --git a/package.json b/package.json index bccf03214..6ca82cd1a 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "@types/semver": "^7.5.8", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", - "@vercel/ncc": "^0.38.1", + "@vercel/ncc": "^0.38.3", "eslint": "^8.57.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-jest": "^29.0.1",