Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 609fa2a

Browse files
committed
chore: bump @npmcli/template-oss to 4.23.5
1 parent e245b20 commit 609fa2a

File tree

23 files changed

+545
-281
lines changed

23 files changed

+545
-281
lines changed

.commitlintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ module.exports = {
77
'header-max-length': [2, 'always', 80],
88
'subject-case': [0],
99
'body-max-line-length': [0],
10+
'footer-max-line-length': [0],
1011
},
1112
}

.github/actions/create-check/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
with:
2626
result-encoding: string
2727
script: |
28-
const { repo: { owner, repo}, runId, serverUrl } = context
28+
const { repo: { owner, repo}, runId, serverUrl } = context
2929
const { JOB_NAME, SHA } = process.env
3030
3131
const job = await github.rest.actions.listJobsForWorkflowRun({

.github/actions/install-latest-npm/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
MATCH=$SPEC
4545
echo "Found compatible version: npm@$MATCH"
4646
break
47-
fi
47+
fi
4848
done
4949
5050
if [ -z $MATCH ]; then

.github/workflows/ci-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: npm run postlint --ignore-scripts -ws -iwr --if-present
6363
- name: Conclude Check
6464
uses: LouisBrunner/[email protected]
65-
if: always()
65+
if: steps.create-check.outputs.check-id && always()
6666
with:
6767
token: ${{ secrets.GITHUB_TOKEN }}
6868
conclusion: ${{ job.status }}
@@ -120,7 +120,7 @@ jobs:
120120
run: npm test --ignore-scripts -ws -iwr --if-present
121121
- name: Conclude Check
122122
uses: LouisBrunner/[email protected]
123-
if: always()
123+
if: steps.create-check.outputs.check-id && always()
124124
with:
125125
token: ${{ secrets.GITHUB_TOKEN }}
126126
conclusion: ${{ job.status }}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
git config --global user.email "[email protected]"
3030
git config --global user.name "npm CLI robot"
3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v2
32+
uses: github/codeql-action/init@v3
3333
with:
3434
languages: javascript
3535
- name: Perform CodeQL Analysis
36-
uses: github/codeql-action/analyze@v2
36+
uses: github/codeql-action/analyze@v3

.github/workflows/post-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
id: flags
5151
run: |
5252
dependabot_dir="${{ steps.metadata.outputs.directory }}"
53-
if [[ "$dependabot_dir" == "/" ]]; then
53+
if [[ "$dependabot_dir" == "/" || "$dependabot_dir" == "/main" ]]; then
5454
echo "workspace=-iwr" >> $GITHUB_OUTPUT
5555
else
5656
# strip leading slash from directory so it works as a

.github/workflows/release-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
- name: Install Dependencies
4545
run: npm i --ignore-scripts --no-audit --no-fund
4646
- name: Check If Published
47+
env:
48+
RELEASES: ${{ inputs.releases }}
4749
run: |
4850
EXIT_CODE=0
4951

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
# ignore everything in the root
44
/*
5-
# transient test directories
6-
tap-testdir*/
75

8-
# keep these
96
!**/.gitignore
107
!/.commitlintrc.js
118
!/.eslintrc.js
129
!/.eslintrc.local.*
10+
!/.git-blame-ignore-revs
1311
!/.github/
1412
!/.gitignore
1513
!/.npmrc
14+
!/.prettierignore
15+
!/.prettierrc.js
1616
!/.release-please-manifest.json
1717
!/AUTHORS
1818
!/bin/
@@ -32,6 +32,7 @@ tap-testdir*/
3232
!/tap-snapshots/
3333
!/test/
3434
!/tsconfig.json
35+
tap-testdir*/
3536
!/pkg1/
3637
!/pkg2/
3738
!/pkg3/

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
GitHub takes the security of our software products and services seriously, including the open source code repositories managed through our GitHub organizations, such as [GitHub](https://github.com/GitHub).
44

5-
If you believe you have found a security vulnerability in this GitHub-owned open source repository, you can report it to us in one of two ways.
5+
If you believe you have found a security vulnerability in this GitHub-owned open source repository, you can report it to us in one of two ways.
66

77
If the vulnerability you have found is *not* [in scope for the GitHub Bug Bounty Program](https://bounty.github.com/#scope) or if you do not wish to be considered for a bounty reward, please report the issue to us directly through [[email protected]](mailto:[email protected]).
88

0 commit comments

Comments
 (0)