diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 47a54f3..e50fb48 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,10 @@ version: 2 updates: - package-ecosystem: github-actions directory: '/' + ignore: + - dependency-name: 'actions/*' + update-types: + ['version-update:semver-minor', 'version-update:semver-patch'] schedule: interval: daily open-pull-requests-limit: 10 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16ac427..00a1b9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v2 - name: Use Node.js - uses: actions/setup-node@v2.4.1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/package-manager-ci.yml b/.github/workflows/package-manager-ci.yml index dbf7476..f205a1f 100644 --- a/.github/workflows/package-manager-ci.yml +++ b/.github/workflows/package-manager-ci.yml @@ -17,9 +17,9 @@ jobs: os: [macOS-latest, windows-latest] node-version: [12, 14, 16] 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 }} - name: Use pnpm @@ -39,9 +39,9 @@ jobs: os: [macOS-latest] node-version: [12, 14, 16] 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 }} - name: Use yarn