Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

Commit 363e282

Browse files
committed
chore: group dependabot dependency updates for minor/patch updates
Closes #63, Closes #64, Closes #65, Closes #66 To minimize the number of pull requests we get from dependabot, using groups will help with this. Still want major semver changes to be single PRs so that stand out and we pay particular attention to them. - [x] handle our multiple github action updates while in here. Signed-off-by: jmeridth <jmeridth@gmail.com>
1 parent 9556e77 commit 363e282

File tree

8 files changed

+28
-10
lines changed

8 files changed

+28
-10
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
---
22
version: 2
33
updates:
44
- package-ecosystem: "pip"
@@ -7,15 +7,33 @@ updates:
77
interval: "daily"
88
commit-message:
99
prefix: "chore(deps)"
10+
groups:
11+
dependencies:
12+
applies-to: version-updates
13+
update-types:
14+
- "minor"
15+
- "patch"
1016
- package-ecosystem: "github-actions"
1117
directory: "/"
1218
schedule:
1319
interval: "daily"
1420
commit-message:
1521
prefix: "chore(deps)"
22+
groups:
23+
dependencies:
24+
applies-to: version-updates
25+
update-types:
26+
- "minor"
27+
- "patch"
1628
- package-ecosystem: "docker"
1729
directory: "/"
1830
schedule:
1931
interval: "daily"
2032
commit-message:
2133
prefix: "chore(deps)"
34+
groups:
35+
dependencies:
36+
applies-to: version-updates
37+
update-types:
38+
- "minor"
39+
- "patch"

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
26+
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
2727
- name: Initialize CodeQL
2828
uses: github/codeql-action/init@d39d31e687223d841ef683f52467bd88e9b21c14
2929
- name: Autobuild

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
17+
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
1818
- name: Build the Docker image
1919
run: docker build . --file Dockerfile --platform linux/amd64 --tag automatic-contributors-pr:"$(date +%s)"

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Validate PR title
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f
23+
- uses: amannn/action-semantic-pull-request@cfb60706e18bc85e8aec535e3c577abe8f70378e
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
with:

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ['3.10', '3.11', '3.12']
1919

2020
steps:
21-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
21+
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
2424
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
registry: ${{ env.REGISTRY }}
6363
username: ${{ github.actor }}
6464
password: ${{ secrets.GITHUB_TOKEN }}
65-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
65+
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
6666
- name: Push Docker Image
6767
if: ${{ success() }}
6868
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
28+
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
2929
with:
3030
persist-credentials: false
3131

@@ -36,12 +36,12 @@ jobs:
3636
results_format: sarif
3737
publish_results: true
3838
- name: "Upload artifact"
39-
uses: actions/upload-artifact@97a0fba1372883ab732affbe8f94b823f91727db # v3.pre.node20
39+
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
4040
with:
4141
name: SARIF file
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9
45+
uses: github/codeql-action/upload-sarif@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
4646
with:
4747
sarif_file: results.sarif

.github/workflows/super-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout Code
23-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
23+
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
2424
with:
2525
fetch-depth: 0
2626
- name: Install dependencies

0 commit comments

Comments
 (0)