You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dist/post/index.js
+65-25Lines changed: 65 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -61193,10 +61193,10 @@ function addSummary() {
61193
61193
}
61194
61194
if (needsSubscription) {
61195
61195
yield core.summary.addSeparator()
61196
-
.addRaw(`<h2>❌ GitHub Actions Runtime Security is disabled</h2>`);
61196
+
.addRaw(`<h2>⚠️ Your GitHub Actions Runtime Security is currently disabled!</h2>`);
61197
61197
yield core.summary.addRaw(`
61198
-
<p>You are seeing this markdown since this workflow uses the <a href="https://github.com/step-security/harden-runner">Harden-Runner GitHub Action</a> by StepSecurity in a private repository, but your organization has not signed up for a free trial or a paid subscription.</p>
61199
-
<p>To start a free trial, install the <a href="https://github.com/apps/stepsecurity-actions-security">StepSecurity Actions Security GitHub App</a>or reach out to us via our <a href="https://www.stepsecurity.io/contact">contact form.</a></p>
61198
+
<p>It appears that you're using the <a href="https://github.com/step-security/harden-runner">Harden-Runner GitHub Action</a> by StepSecurity within a private repository. However, runtime security is not enabled as your organization hasn't signed up for a free trial or a paid subscription yet.</p>
61199
+
<p>To enable runtime security, start a free trial today by installing the <a href="https://github.com/apps/stepsecurity-actions-security">StepSecurity Actions Security GitHub App</a>. For more information or assistance, feel free to reach out to us through our <a href="https://www.stepsecurity.io/contact">contact form</a>.</p>
61200
61200
`)
61201
61201
.addSeparator()
61202
61202
.write();
@@ -61211,11 +61211,8 @@ function addSummary() {
61211
61211
if (tableEntries.length === 0) {
61212
61212
return;
61213
61213
}
61214
-
let insightsRow = `<tr>
61215
-
<td colspan="3" align="center"><a href="${insights_url}">🛡️ Check out the full report and recommended policy at StepSecurity</a></td>
<p>Preview of the network events that occurred on the GitHub-hosted runner during this workflow run.</p>
61232
61230
<h3>🌐 Network Events</h3>
61233
61231
<table>
61234
61232
<thead>
61235
61233
<tr>
61236
61234
<th>Process</th>
61237
-
<th>Endpoint</th>
61235
+
<th>Destination</th>
61238
61236
<th>Status</th>
61239
61237
</tr>
61240
61238
</thead>
@@ -61251,13 +61249,11 @@ function addSummary() {
61251
61249
<td>...</td>
61252
61250
<td>...</td>
61253
61251
</tr>
61254
-
${insightsRow}
61255
61252
</tbody>
61256
61253
</table>
61254
+
${insightsRow}
61257
61255
`);
61258
-
yield core.summary.addSeparator()
61259
-
.addRaw(`<blockquote>You are seeing this markdown since this workflow uses the <a href="https://github.com/step-security/harden-runner">Harden-Runner GitHub Action</a>.
61260
-
Harden-Runner is a security agent for GitHub-hosted runners to block egress traffic & detect code overwrite to prevent breaches.</blockquote>`)
61256
+
yield core.summary.addRaw(`<p>Markdown generated by the <a href="https://github.com/step-security/harden-runner">Harden-Runner GitHub Action</a></p>`)
const CONTAINER_MESSAGE = "This job is running in a container. Harden Runner does not run in a container as it needs sudo access to run. This job will not be monitored.";
61267
61263
const UBUNTU_MESSAGE = "This job is not running in a GitHub Actions Hosted Runner Ubuntu VM. Harden Runner is only supported on Ubuntu VM. This job will not be monitored.";
61268
61264
const HARDEN_RUNNER_UNAVAILABLE_MESSAGE = "Sorry, we are currently experiencing issues with the Harden Runner installation process. It is currently unavailable.";
61265
+
const ARC_RUNNER_MESSAGE = "Workflow is currently being executed in ARC based runner";
0 commit comments