Skip to content

Commit

Permalink
build(dependabot): ignore non-major action updates (#1752)
Browse files Browse the repository at this point in the history
Follow the lead of fastify/fastify#3451

No need to add the PR noise of every little patch or minor update to official GitHub actions. That just creates alert fatigue and drowns out actually substantial and/or important PR:s.
  • Loading branch information
voxpelli committed Nov 29, 2021
1 parent ed04ed4 commit 605fb5c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ updates:

- package-ecosystem: "github-actions"
directory: "/"
ignore:
- dependency-name: "actions/*"
update-types:
["version-update:semver-minor", "version-update:semver-patch"]
schedule:
interval: "daily"
labels:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/old-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

steps:
- name: Checkout project
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: Cache Node dependencies
uses: actions/cache@v2.1.6
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:

steps:
- name: Checkout project
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: Cache Node dependencies
uses: actions/cache@v2.1.6
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:

steps:
- name: Checkout project
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: Cache Node dependencies
uses: actions/cache@v2.1.6
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Expand Down

0 comments on commit 605fb5c

Please sign in to comment.