Skip to content

Commit d161b6b

Browse files
authored
ci(NODE-6036): upgrade gha and add dependabot (#33)
1 parent 1398f26 commit d161b6b

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"

.github/pull_request_template.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
### Description
2+
3+
#### What is changing?
4+
5+
##### Is there new documentation needed for these changes?
6+
7+
#### What is the motivation for this change?
8+
9+
<!-- If this is a bug, it helps to describe the current behavior and a clear outline of the expected behavior -->
10+
<!-- If this is a feature, it helps to describe the new use case enabled by this change -->
11+
12+
<!--
13+
Contributors!
14+
First of all, thank you so much!!
15+
If you haven't already, it would greatly help the team review this work in a timely manner if you create a JIRA ticket to track this PR.
16+
You can do that here: https://jira.mongodb.org/projects/NODE
17+
-->
18+
19+
### Release Highlight
20+
21+
<!-- RELEASE_HIGHLIGHT_START -->
22+
23+
### Fill in title or leave empty for no highlight
24+
25+
<!-- RELEASE_HIGHLIGHT_END -->
26+
27+
### Double check the following
28+
29+
- [ ] Ran `npm run lint` script
30+
- [ ] Self-review completed using the [steps outlined here](https://github.com/mongodb/node-mongodb-native/blob/HEAD/CONTRIBUTING.md#reviewer-guidelines)
31+
- [ ] PR title follows the [correct format](https://www.conventionalcommits.org/en/v1.0.0/): `type(NODE-xxxx)[!]: description`
32+
- Example: `feat(NODE-1234)!: rewriting everything in coffeescript`
33+
- [ ] Changes are covered by tests
34+
- [ ] New TODOs have a related JIRA ticket

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
node-version: [16.x, 18.x, 20.x]
1313
runs-on: ${{matrix.os}}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: Install Dependencies

0 commit comments

Comments
 (0)