Skip to content

Commit ccd8d0b

Browse files
committed
Update all workflows to latest version.
1 parent 4c467ce commit ccd8d0b

File tree

5 files changed

+28
-29
lines changed

5 files changed

+28
-29
lines changed

β€Ž.github/check-md-links.jsonβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"httpHeaders": [
33
{
4-
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/"],
4+
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "https://classroom.github.com"],
55
"headers": {
66
"Accept-Encoding": "zstd, br, gzip, deflate"
77
}
88
}
9-
]
9+
],
10+
"aliveStatusCodes": [200, 500, 503]
1011
}

β€Ž.github/dependabot.ymlβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ updates:
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 10
8+
commit-message:
9+
prefix: ""
810
ignore:
911
- dependency-name: org.eclipse.collections:eclipse-collections
1012
versions:
@@ -21,10 +23,14 @@ updates:
2123

2224
- package-ecosystem: "github-actions"
2325
directory: "/"
26+
commit-message:
27+
prefix: ""
2428
schedule:
2529
interval: "daily"
2630

2731
- package-ecosystem: "npm"
2832
directory: "/"
33+
commit-message:
34+
prefix: ""
2935
schedule:
3036
interval: "daily"

β€Ž.github/labels.ymlβ€Ž

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@
77
- name: enhancement
88
description: Enhancement of existing functionality
99
color: 0366d6
10-
- name: deprecated
11-
description: Deprecating API
12-
color: f4c21d
13-
- name: removed
14-
description: Removing API
10+
- name: breaking
11+
description: Breaking Changes
1512
color: e4b21d
1613
- name: tests
1714
description: Enhancement of tests
@@ -26,14 +23,14 @@
2623
description: Update of dependencies
2724
color: e6e6e6
2825
- name: java
29-
desccription: Pull requests that update Maven Java dependencies
26+
description: Pull requests that update Maven Java dependencies
3027
color: b6b6b6
3128
- name: javascript
32-
desccription: Pull requests that update Node Javascript dependencies
29+
description: Pull requests that update Node Javascript dependencies
3330
color: b6b6b6
3431
- name: github_actions
35-
desccription: Pull requests that update Github Actions code
32+
description: Pull requests that update Github Actions workflows
3633
color: 909090
3734
- name: hacktoberfest
38-
desccription: Pull requests that participate in Hacktoberfest 2021
35+
description: Pull requests that participate in Hacktoberfest
3936
color: 7057ff

β€Ž.github/release-drafter.ymlβ€Ž

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,22 @@ template: |
66
77
# Emoji reference: https://gitmoji.carloscuesta.me/
88
categories:
9-
- title: πŸ’₯ Removed
10-
label: removed
11-
- title: ⚠️ Deprecated
12-
label: deprecated
9+
- title: πŸ’₯ Breaking Changes
10+
label: breaking
1311
- title: πŸš€ New Features
14-
labels:
15-
- feature
12+
label: feature
1613
- title: ✨ Improvements
17-
labels:
18-
- enhancement
14+
label: enhancement
1915
- title: πŸ› Bug Fixes
20-
labels:
21-
- bug
22-
- fix
23-
- bugfix
24-
- regression
25-
- title: πŸ“ Documentation Updates
16+
label: bug
17+
- title: πŸ“ Documentation
2618
label: documentation
2719
- title: πŸ“¦ Dependency Updates
2820
label: dependencies
2921
- title: πŸ”§ Internal Changes
3022
label: internal
3123
- title: 🚦 Tests
32-
labels:
33-
- test
34-
- tests
24+
label: tests
3525

3626
version-resolver:
3727
major:

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
platform: [ubuntu-latest, macos-latest, windows-latest]
16-
jdk: [11, 17]
16+
jdk: [17]
17+
include:
18+
- os: ubuntu-latest
19+
jdk: 11
20+
- os: macos-latest
21+
jdk: 11
1722

1823
runs-on: ${{ matrix.platform }}
1924
name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }}

0 commit comments

Comments
Β (0)