Skip to content

Commit fe6e72a

Browse files
committed
chore: group dependabot dependency updates for minor/patch updates
Closes #268, Closes #269, Closes #270, Close #271, Close #272 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 <[email protected]>
1 parent fd1b3ce commit fe6e72a

10 files changed

+29
-11
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
language: [ 'python' ]
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
39+
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
4040
- name: Initialize CodeQL
4141
uses: github/codeql-action/init@d39d31e687223d841ef683f52467bd88e9b21c14
4242
with:

.github/workflows/contributor_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "END_DATE=$end_date" >> "$GITHUB_ENV"
2929
3030
- name: Run contributor action
31-
uses: github/contributors@832b6518181710ef277bc9ddafda6696e6b312bd
31+
uses: github/contributors@fa291c69abb946173a963a32f20ee29e8a7b6775
3232
env:
3333
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
START_DATE: ${{ env.START_DATE }}

.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 issue-metrics:"$(date +%s)"

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
statuses: write
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
21+
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
2222
with:
2323
# Full git history is needed to get a proper
2424
# list of changed files within `super-linter`

.github/workflows/major-version-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: Checkout Repo
18-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
18+
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
1919

2020
- name: version
2121
id: version

.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-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: [3.11, 3.12]
2323

2424
steps:
25-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
25+
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
2626
- name: Set up Python ${{ matrix.python-version }}
2727
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
2828
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.24.9
4646
with:
4747
sarif_file: results.sarif

0 commit comments

Comments
 (0)