Skip to content

Commit

Permalink
build(dependabot): ignore minor and patch github-actions updates (#1224)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Nov 17, 2021
1 parent d28197f commit b37a947
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/bench.yml
Expand Up @@ -17,19 +17,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2.3.5
uses: actions/checkout@v2
with:
ref: ${{ github.base_ref }}
- name: Setup Node
uses: actions/setup-node@v2.4.1
uses: actions/setup-node@v2
with:
node-version: 12
- name: Install Modules
run: npm i
- name: Run Benchmark
run: npm run bench | tee current.txt
- name: Upload Current Results
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v2
with:
name: current
path: current.txt
Expand All @@ -39,17 +39,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2.3.5
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2.4.1
uses: actions/setup-node@v2
with:
node-version: 12
- name: Install Modules
run: npm i
- name: Run Benchmark
run: npm run bench | tee branch.txt
- name: Upload Branch Results
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v2
with:
name: branch
path: branch.txt
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -20,9 +20,9 @@ jobs:
os: [macOS-latest, windows-latest, ubuntu-latest]
node-version: [12, 14, 16]
steps:
- uses: actions/checkout@v2.3.5
- 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: Install
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/package-manager-ci.yml
Expand Up @@ -14,9 +14,9 @@ jobs:
os: [windows-latest, ubuntu-latest]
node-version: [14]
steps:
- uses: actions/checkout@v2.3.5
- 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
Expand All @@ -37,9 +37,9 @@ jobs:
os: [windows-latest, ubuntu-latest]
node-version: [14]
steps:
- uses: actions/checkout@v2.3.5
- 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
Expand All @@ -64,9 +64,9 @@ jobs:
os: [windows-latest, ubuntu-latest]
node-version: [14]
steps:
- uses: actions/checkout@v2.3.5
- 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
Expand Down

0 comments on commit b37a947

Please sign in to comment.