Skip to content

Commit 62f2404

Browse files
authored
Merge pull request #19 from actions/dependencies
Update Dependabot Grouping
2 parents cd51e05 + 11f0619 commit 62f2404

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed

.github/dependabot.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
version: 2
22
updates:
3-
- package-ecosystem: github-actions
3+
- package-ecosystem: docker
44
directory: /
55
schedule:
66
interval: weekly
7+
groups:
8+
docker-minor:
9+
update-types:
10+
- minor
11+
- patch
712

8-
- package-ecosystem: docker
13+
- package-ecosystem: github-actions
914
directory: /
1015
schedule:
1116
interval: weekly
17+
groups:
18+
actions-minor:
19+
update-types:
20+
- minor
21+
- patch

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ name: Continuous Integration
22

33
on:
44
pull_request:
5-
branches:
6-
- main
75
push:
86
branches:
97
- main
108

9+
permissions:
10+
contents: read
11+
1112
jobs:
1213
test-docker:
1314
name: Docker Tests

.github/workflows/linter.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
1-
name: Lint Code Base
1+
name: Lint Codebase
22

33
on:
44
pull_request:
5-
branches:
6-
- main
75
push:
86
branches:
97
- main
108

9+
permissions:
10+
contents: read
11+
packages: read
12+
statuses: write
13+
1114
jobs:
1215
lint:
13-
name: Lint Code Base
16+
name: Lint Codebase
1417
runs-on: ubuntu-latest
1518

16-
permissions:
17-
contents: read
18-
packages: read
19-
statuses: write
20-
2119
steps:
2220
- name: Checkout
2321
id: checkout
2422
uses: actions/checkout@v4
2523

26-
- name: Lint Code Base
24+
- name: Lint Codebase
2725
id: super-linter
2826
uses: super-linter/super-linter/slim@v5
2927
env:
3028
DEFAULT_BRANCH: main
3129
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
VALIDATE_ALL_CODEBASE: true

0 commit comments

Comments
 (0)