Skip to content

Commit fb1879a

Browse files
committed
Post-merge Github Action error fixes
1 parent d3b3406 commit fb1879a

File tree

4 files changed

+6
-469
lines changed

4 files changed

+6
-469
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ LABEL "com.github.actions.description"="Update a pinned gist to contain your lat
88
LABEL "com.github.actions.icon"="book-open"
99
LABEL "com.github.actions.color"="green"
1010

11-
# Copy the package.json and package-lock.json
12-
COPY yarn.lock ./
11+
# Copy the package.json
1312
COPY package.json ./
13+
COPY package-lock.json ./
1414

1515
# Install dependencies
16-
RUN yarn install --frozen-lockfile
16+
RUN npm install --production
1717

1818
# Copy the rest of your action's code
1919
COPY . .

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"@octokit/rest": "^17.9.2",
1414
"dotenv": "^8.2.0",
1515
"got": "^11.1.4",
16-
"lodash.get": "^4.4.2"
16+
"wordwrap": "^1.0.0"
1717
}
1818
}

0 commit comments

Comments
 (0)