Skip to content

Commit e07cedd

Browse files
authored
Merge branch 'Meteor-Community-Packages:master' into patch-1
2 parents 5452584 + bb64c2f commit e07cedd

File tree

8 files changed

+933
-529
lines changed

8 files changed

+933
-529
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v3
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v2
36+
uses: github/codeql-action/autobuild@v3
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v2
39+
uses: github/codeql-action/analyze@v3
4040
with:
4141
category: "/language:${{ matrix.language }}"

.github/workflows/comment-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Create Comment
12-
uses: peter-evans/create-or-update-comment@v1.4.2
12+
uses: peter-evans/create-or-update-comment@v4.0.0
1313
with:
1414
issue-number: ${{ github.event.issue.number }}
1515
body: |

.github/workflows/testsuite.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
- name: setup node
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: 20
20+
node-version: 24
2121

2222
- name: cache dependencies
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.npm
26-
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
26+
key: ${{ runner.os }}-node-24-${{ hashFiles('**/package-lock.json') }}
2727
restore-keys: |
28-
${{ runner.os }}-node-20-
28+
${{ runner.os }}-node-24-
2929
3030
- run: |
3131
npm ci

check-npm-versions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ interface indexAny {
1717
// - version# if incompatible version is installed
1818
const compatibleVersionIsInstalled = (name: string, range: string | semver.Range): boolOrString => {
1919
try {
20+
// eslint-disable-next-line
2021
const installedVersion = require(`${name}/package.json`).version;
2122
if (semver.satisfies(installedVersion, range)) {
2223
return true;
@@ -70,7 +71,7 @@ export const checkNpmVersions = (packages: indexAny, packageName: string): void
7071
${errors.join('\n')}
7172
7273
Read more about installing npm peer dependencies:
73-
http://guide.meteor.com/using-packages.html#peer-npm-dependencies
74+
https://guide.meteor.com/using-packages.html#peer-npm-dependencies
7475
`);
7576
}
7677
};

0 commit comments

Comments
 (0)