Skip to content

Commit 76a6e1a

Browse files
committed
Fix npm pinning (again)
1 parent 9b46465 commit 76a6e1a

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

.github/package-lock.json

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "workflows",
3+
"version": "1.0.0",
4+
"description": "Dependencies for GitHub Action workflows",
5+
"private": true,
6+
"dependencies": {
7+
"yaml": "2.8.1"
8+
}
9+
}

.github/workflows/assign-issue-owners.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2424

2525
- name: Install yaml dependency used below
26-
run: npm install [email protected] --integrity=sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==
26+
run: npm ci
27+
working-directory: .github
2728

2829
- name: Parse component label and assign owners
2930
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,6 @@ bin
5656

5757
# Gradle build scans
5858
build-scan.txt
59+
60+
# Node
61+
node_modules

0 commit comments

Comments
 (0)