diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ae17f3d..9e5b3ba 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,12 +1,16 @@ version: 2 updates: - package-ecosystem: github-actions - directory: "/" + directory: '/' + ignore: + - dependency-name: 'actions/*' + update-types: + ['version-update:semver-minor', 'version-update:semver-patch'] schedule: interval: daily open-pull-requests-limit: 10 - package-ecosystem: npm - directory: "/" + directory: '/' schedule: interval: daily open-pull-requests-limit: 10 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 0bcf009..63c0b4b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -19,9 +19,9 @@ jobs: node-version: [12.x, 14.x, 16.x] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2.4.1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: node --version