Skip to content

Commit 945ce45

Browse files
chore: bump @npmcli/template-oss from 3.2.0 to 3.3.2 (#117)
* chore: bump @npmcli/template-oss from 3.2.0 to 3.3.2 Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 3.2.0 to 3.3.2. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v3.2.0...v3.3.2) --- updated-dependencies: - dependency-name: "@npmcli/template-oss" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * chore: postinstall for dependabot template-oss PR Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gar <[email protected]>
1 parent 804411f commit 945ce45

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const localConfigs = readdir(__dirname)
77
.map((file) => `./${file}`)
88

99
module.exports = {
10+
root: true,
1011
extends: [
1112
'@npmcli',
1213
...localConfigs,

.github/workflows/audit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
- name: Update npm to latest
2424
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
2525
- run: npm -v
26-
- run: npm i --ignore-scripts --package-lock
26+
- run: npm i --ignore-scripts --no-audit --no-fund --package-lock
2727
- run: npm audit

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Update npm to latest
3131
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
3232
- run: npm -v
33-
- run: npm i --ignore-scripts
33+
- run: npm i --ignore-scripts --no-audit --no-fund
3434
- run: npm run lint
3535

3636
test:
@@ -82,5 +82,5 @@ jobs:
8282
if: ${{ !startsWith(matrix.node-version, '10.') }}
8383
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
8484
- run: npm -v
85-
- run: npm i --ignore-scripts
85+
- run: npm i --ignore-scripts --no-audit --no-fund
8686
- run: npm test --ignore-scripts

.github/workflows/post-dependabot.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ name: Post Dependabot Actions
44

55
on: pull_request
66

7-
# https://docs.github.com/en/rest/overview/permissions-required-for-github-apps
7+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
88
permissions:
9-
actions: write
109
contents: write
1110

1211
jobs:
13-
Install:
12+
template-oss-apply:
1413
runs-on: ubuntu-latest
1514
if: github.actor == 'dependabot[bot]'
1615
steps:
@@ -36,8 +35,9 @@ jobs:
3635
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3736
run: |
3837
gh pr checkout ${{ github.event.pull_request.number }}
39-
npm install --ignore-scripts
38+
npm install --ignore-scripts --no-audit --no-fund
4039
npm run template-oss-apply
4140
git add .
4241
git commit -am "chore: postinstall for dependabot template-oss PR"
4342
git push
43+
npm run lint

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"devDependencies": {
4646
"@npmcli/eslint-config": "^3.0.1",
47-
"@npmcli/template-oss": "3.2.0",
47+
"@npmcli/template-oss": "3.3.2",
4848
"cacache": "^16.0.2",
4949
"nock": "^13.2.4",
5050
"require-inject": "^1.4.4",
@@ -60,6 +60,6 @@
6060
},
6161
"templateOSS": {
6262
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
63-
"version": "3.2.0"
63+
"version": "3.3.2"
6464
}
6565
}

0 commit comments

Comments
 (0)