Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(dependabot): ignore minor and patch github-actions updates #1224

Merged
merged 1 commit into from Nov 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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