Public Access
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7be22cbace
|
||
|
|
36a5751a64
|
||
|
|
c72c196d32
|
||
|
|
50cb1867b0
|
||
|
|
380200d383
|
||
|
|
d18d2d8134
|
||
|
|
b7e98a4fa5
|
||
|
|
34fbfaba50
|
||
|
|
f8bde94864
|
||
|
|
858dc40f52 | ||
|
|
3ae01282e2 | ||
|
|
dd2c7de31f | ||
|
|
69366f33c9 | ||
|
|
7b350a127d | ||
|
|
286a088f1c | ||
|
|
b7dc4ebf0c | ||
|
|
6dc762e804 | ||
|
|
fe0359b3e1 | ||
|
|
4da312dd0f | ||
|
|
d6805b6463 | ||
|
|
dd51754d4e |
+2
-5
@@ -6,17 +6,14 @@
|
|||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"project": "./tsconfig.json"
|
"project": "./tsconfig.json"
|
||||||
},
|
},
|
||||||
"plugins": [
|
"plugins": ["@typescript-eslint"],
|
||||||
"@typescript-eslint"
|
|
||||||
],
|
|
||||||
"extends": [
|
"extends": [
|
||||||
"eslint:recommended",
|
"eslint:recommended",
|
||||||
"plugin:@typescript-eslint/eslint-recommended",
|
"plugin:@typescript-eslint/eslint-recommended",
|
||||||
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||||||
"plugin:@typescript-eslint/recommended",
|
"plugin:@typescript-eslint/recommended",
|
||||||
"plugin:prettier/recommended",
|
"plugin:prettier/recommended",
|
||||||
"prettier",
|
"prettier"
|
||||||
"prettier/@typescript-eslint"
|
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"@typescript-eslint/explicit-function-return-type": 0
|
"@typescript-eslint/explicit-function-return-type": 0
|
||||||
|
|||||||
@@ -6,10 +6,16 @@ jobs:
|
|||||||
main:
|
main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Create npm configuration
|
||||||
- uses: actions/setup-node@v3
|
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
|
||||||
|
env:
|
||||||
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version-file: '.nvmrc'
|
||||||
|
cache: 'npm'
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
# octokit types problem ?
|
# octokit types problem ?
|
||||||
# - run: npm run lint
|
# - run: npm run lint
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
@actions-rs:registry=https://npm.pkg.github.com
|
@clechasseur:registry=https://npm.pkg.github.com
|
||||||
|
|||||||
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Update the GitHub Action runtime and local Node tooling target to Node 24.
|
||||||
|
|
||||||
|
## [1.4.1] - 2023-04-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Corrected reporting on `unsound` and `notice` informationals
|
||||||
|
|
||||||
|
## [1.4.0] - 2023-04-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Reflect change to enable warning on `unsound` and `notice` informationals
|
||||||
|
|
||||||
## [1.3.2] - 2023-03-13
|
## [1.3.2] - 2023-03-13
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -26,8 +26,8 @@ jobs:
|
|||||||
security_audit:
|
security_audit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: rustsec/audit-check@v1
|
- uses: rustsec/audit-check@v2.0.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
```
|
```
|
||||||
@@ -36,7 +36,6 @@ It is recommended to add the `paths:` section into the workflow file,
|
|||||||
as it would effectively speed up the CI pipeline, since the audit process
|
as it would effectively speed up the CI pipeline, since the audit process
|
||||||
will not be performed if no dependencies were changed.
|
will not be performed if no dependencies were changed.
|
||||||
|
|
||||||
|
|
||||||
In case of any security advisories found, [status check](https://help.github.com/en/articles/about-status-checks)
|
In case of any security advisories found, [status check](https://help.github.com/en/articles/about-status-checks)
|
||||||
created by this Action will be marked as "failed".\
|
created by this Action will be marked as "failed".\
|
||||||
Note that informational advisories are not affecting the check status.
|
Note that informational advisories are not affecting the check status.
|
||||||
@@ -60,9 +59,9 @@ github-token:
|
|||||||
checks-reason: to create check
|
checks-reason: to create check
|
||||||
```
|
```
|
||||||
|
|
||||||
The action does not raise issues when it is not triggered from a "cron" scheduled workflow.
|
This action only raises issues when it's triggered from a `cron` scheduled workflow or on manual `workflow_dispatch`
|
||||||
|
|
||||||
When running the action as scheduled it will crate issues but e.g. in PR / push fails the action.
|
When running the action as scheduled it will create issues but e.g. in PR / push fails the action.
|
||||||
|
|
||||||
#### Limitations
|
#### Limitations
|
||||||
|
|
||||||
@@ -86,8 +85,8 @@ jobs:
|
|||||||
audit:
|
audit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rs/audit-check@v1
|
- uses: rustsec/audit-check@v2.0.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
```
|
```
|
||||||
@@ -104,5 +103,27 @@ For each new advisory (including informal) an issue will be created:
|
|||||||
| ------------| -------- | ---------------------------------------------------------------------------| ------ | --------|
|
| ------------| -------- | ---------------------------------------------------------------------------| ------ | --------|
|
||||||
| `token` | ✓ | [GitHub token], usually a `${{ secrets.GITHUB_TOKEN }}` | string | |
|
| `token` | ✓ | [GitHub token], usually a `${{ secrets.GITHUB_TOKEN }}` | string | |
|
||||||
| `ignore` | | Comma-separated list of advisory ids to ignore | string | |
|
| `ignore` | | Comma-separated list of advisory ids to ignore | string | |
|
||||||
|
| `working-directory`| | The directory of the Cargo.toml / Cargo.lock files to scan. | string | `.` |
|
||||||
|
| `new-issue-labels` | | Comma-separated list of Labes to be added to new issues | string | `.` |
|
||||||
|
|
||||||
[GitHub token]: https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token
|
[GitHub token]: https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token
|
||||||
|
|
||||||
|
## Contribute
|
||||||
|
|
||||||
|
### Setting up npm login
|
||||||
|
|
||||||
|
This repo uses some npm packages hosted on github.
|
||||||
|
To be able to pull these you need to:
|
||||||
|
|
||||||
|
1. Under <https://github.com/settings/tokens> - create a `personal access token (classic)` with `read:packages` scope
|
||||||
|
|
||||||
|
2. Authenticate to the github npm registry
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm login --scope=@clechasseur --auth-type=legacy --registry=https://npm.pkg.github.com
|
||||||
|
```
|
||||||
|
|
||||||
|
```txt
|
||||||
|
Username = Github Username
|
||||||
|
Password = Token
|
||||||
|
```
|
||||||
|
|||||||
+5
-1
@@ -11,7 +11,11 @@ inputs:
|
|||||||
ignore:
|
ignore:
|
||||||
description: Comma-separated list of advisory ids to ignore
|
description: Comma-separated list of advisory ids to ignore
|
||||||
required: false
|
required: false
|
||||||
|
working-directory:
|
||||||
|
description: The directory of the Cargo.toml / Cargo.lock files to scan.
|
||||||
|
required: false
|
||||||
|
default: .
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node16'
|
using: 'node24'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|||||||
Vendored
BIN
Binary file not shown.
Vendored
+11
-1
File diff suppressed because one or more lines are too long
Generated
+3318
-19500
File diff suppressed because it is too large
Load Diff
+22
-22
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rust-audit-check",
|
"name": "rust-audit-check",
|
||||||
"version": "1.3.2",
|
"version": "2.0.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Security audit for security vulnerabilities",
|
"description": "Security audit for security vulnerabilities",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/actions-rs/audit.git"
|
"url": "github:rustsec/audit-check"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"actions",
|
"actions",
|
||||||
@@ -31,29 +31,29 @@
|
|||||||
"author": "actions-rs",
|
"author": "actions-rs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions-rs/audit-check/issues"
|
"url": "https://github.com/rustsec/audit-check/issues"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@rinse-repeat/actions-rs-core": "0.1.8",
|
"@actions/core": "^1.11.1",
|
||||||
"@actions/core": "^1.2.6",
|
"@actions/github": "^6.0.1",
|
||||||
"@actions/github": "^5.1.0",
|
"@clechasseur/rs-actions-core": "^3.0.5",
|
||||||
"npm-check-updates": "^16.8.0",
|
"gitea-js": "^1.23.0",
|
||||||
"nunjucks": "^3.2.3"
|
"nunjucks": "^3.2.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
"@types/jest": "^29.5.12",
|
||||||
"ts-node": "^10.9.1",
|
"@types/node": "^24.0.0",
|
||||||
"@typescript-eslint/parser": "^5.56.0",
|
"@types/nunjucks": "^3.2.4",
|
||||||
"eslint": "^8.36.0",
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
||||||
"eslint-config-prettier": "^6.11.0",
|
"@typescript-eslint/parser": "^6.21.0",
|
||||||
"eslint-plugin-prettier": "^3.1.3",
|
"@vercel/ncc": "0.38.1",
|
||||||
"@types/jest": "^26.0.1",
|
"eslint": "^8.56.0",
|
||||||
"@types/node": "^16.11.7",
|
"eslint-config-prettier": "^9.1.0",
|
||||||
"@vincentriemer/ncc": "^0.20.5",
|
"eslint-plugin-prettier": "^5.1.3",
|
||||||
"jest": "^26.0.1",
|
"jest": "^29.7.0",
|
||||||
"jest-circus": "^26.0.1",
|
"prettier": "^3.2.5",
|
||||||
"ts-jest": "^26.0.1",
|
"ts-jest": "^29.1.2",
|
||||||
"typescript": "^3.8.3",
|
"ts-node": "^10.9.2",
|
||||||
"prettier": "^2.0.5"
|
"typescript": "^5.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-3
@@ -2,18 +2,24 @@
|
|||||||
* Parse action input into a some proper thing.
|
* Parse action input into a some proper thing.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { input } from '@rinse-repeat/actions-rs-core';
|
import { input } from '@clechasseur/rs-actions-core';
|
||||||
import { getInputList } from '@rinse-repeat/actions-rs-core/dist/input';
|
|
||||||
|
|
||||||
// Parsed action input
|
// Parsed action input
|
||||||
export interface Input {
|
export interface Input {
|
||||||
token: string;
|
token: string;
|
||||||
ignore: string[];
|
ignore: string[];
|
||||||
|
new_issue_labels: string[];
|
||||||
|
workingDirectory: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function get(): Input {
|
export function get(): Input {
|
||||||
return {
|
return {
|
||||||
token: input.getInput('token', { required: true }),
|
token: input.getInput('token', { required: true }),
|
||||||
ignore: getInputList('ignore', { required: false }),
|
ignore: input.getInputList('ignore', { required: false }),
|
||||||
|
new_issue_labels: input.getInputList('new-issue-labels', {
|
||||||
|
required: false,
|
||||||
|
}),
|
||||||
|
workingDirectory:
|
||||||
|
input.getInput('working-directory', { required: false }) ?? '.',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+25
-8
@@ -1,10 +1,10 @@
|
|||||||
import * as process from 'process';
|
|
||||||
import * as os from 'os';
|
import * as os from 'os';
|
||||||
|
import * as process from 'process';
|
||||||
|
|
||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
import * as github from '@actions/github';
|
import * as github from '@actions/github';
|
||||||
|
|
||||||
import { Cargo } from '@rinse-repeat/actions-rs-core';
|
import { Cargo } from '@clechasseur/rs-actions-core';
|
||||||
|
|
||||||
import * as input from './input';
|
import * as input from './input';
|
||||||
import * as interfaces from './interfaces';
|
import * as interfaces from './interfaces';
|
||||||
@@ -12,12 +12,11 @@ import * as reporter from './reporter';
|
|||||||
|
|
||||||
async function getData(
|
async function getData(
|
||||||
ignore: string[] | undefined,
|
ignore: string[] | undefined,
|
||||||
|
workingDirectory: string,
|
||||||
): Promise<interfaces.Report> {
|
): Promise<interfaces.Report> {
|
||||||
const cargo = await Cargo.get();
|
const cargo = await Cargo.get();
|
||||||
await cargo.findOrInstall('cargo-audit');
|
await cargo.findOrInstall('cargo-audit');
|
||||||
|
|
||||||
await cargo.call(['generate-lockfile']);
|
|
||||||
|
|
||||||
let stdout = '';
|
let stdout = '';
|
||||||
try {
|
try {
|
||||||
core.startGroup('Calling cargo-audit (JSON output)');
|
core.startGroup('Calling cargo-audit (JSON output)');
|
||||||
@@ -26,6 +25,7 @@ async function getData(
|
|||||||
commandArray.push('--ignore', item);
|
commandArray.push('--ignore', item);
|
||||||
}
|
}
|
||||||
commandArray.push('--json');
|
commandArray.push('--json');
|
||||||
|
commandArray.push('--file', `${workingDirectory}/Cargo.lock`);
|
||||||
await cargo.call(commandArray, {
|
await cargo.call(commandArray, {
|
||||||
ignoreReturnCode: true,
|
ignoreReturnCode: true,
|
||||||
listeners: {
|
listeners: {
|
||||||
@@ -46,9 +46,18 @@ async function getData(
|
|||||||
return JSON.parse(stdout);
|
return JSON.parse(stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function removeTrailingSlash(str) {
|
||||||
|
if (str[str.length - 1] === '/') {
|
||||||
|
return str.substr(0, str.length - 1);
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
export async function run(actionInput: input.Input): Promise<void> {
|
export async function run(actionInput: input.Input): Promise<void> {
|
||||||
|
const labels = actionInput.new_issue_labels;
|
||||||
const ignore = actionInput.ignore;
|
const ignore = actionInput.ignore;
|
||||||
const report = await getData(ignore);
|
const workingDirectory = removeTrailingSlash(actionInput.workingDirectory);
|
||||||
|
const report = await getData(ignore, workingDirectory);
|
||||||
let shouldReport = false;
|
let shouldReport = false;
|
||||||
if (!report.vulnerabilities.found) {
|
if (!report.vulnerabilities.found) {
|
||||||
core.info('No vulnerabilities were found');
|
core.info('No vulnerabilities were found');
|
||||||
@@ -82,11 +91,19 @@ export async function run(actionInput: input.Input): Promise<void> {
|
|||||||
|
|
||||||
// const octokit = github.getOctokit(actionInput.token, {userAgent: USER_AGENT});
|
// const octokit = github.getOctokit(actionInput.token, {userAgent: USER_AGENT});
|
||||||
const advisories = report.vulnerabilities.list;
|
const advisories = report.vulnerabilities.list;
|
||||||
if (github.context.eventName == 'schedule') {
|
if (
|
||||||
|
github.context.eventName == 'schedule' ||
|
||||||
|
github.context.eventName == 'workflow_dispatch'
|
||||||
|
) {
|
||||||
core.debug(
|
core.debug(
|
||||||
'Action was triggered on a schedule event, creating an Issues report',
|
'Action was triggered on a schedule event, creating an Issues report',
|
||||||
);
|
);
|
||||||
await reporter.reportIssues(actionInput.token, advisories, warnings);
|
await reporter.reportIssues(
|
||||||
|
actionInput.token,
|
||||||
|
advisories,
|
||||||
|
warnings,
|
||||||
|
labels,
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
core.debug(
|
core.debug(
|
||||||
`Action was triggered on a ${github.context.eventName} event, creating a Check report`,
|
`Action was triggered on a ${github.context.eventName} event, creating a Check report`,
|
||||||
@@ -100,7 +117,7 @@ async function main(): Promise<void> {
|
|||||||
const actionInput = input.get();
|
const actionInput = input.get();
|
||||||
await run(actionInput);
|
await run(actionInput);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.setFailed(error.message);
|
core.setFailed((error as Error).message);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|||||||
+59
-32
@@ -4,17 +4,15 @@ import * as core from '@actions/core';
|
|||||||
import * as github from '@actions/github';
|
import * as github from '@actions/github';
|
||||||
import * as nunjucks from 'nunjucks';
|
import * as nunjucks from 'nunjucks';
|
||||||
|
|
||||||
import { checks } from '@rinse-repeat/actions-rs-core';
|
|
||||||
import * as interfaces from './interfaces';
|
import * as interfaces from './interfaces';
|
||||||
import * as templates from './templates';
|
import * as templates from './templates';
|
||||||
|
import { giteaApi } from 'gitea-js';
|
||||||
const pkg = require('../package.json'); // eslint-disable-line @typescript-eslint/no-var-requires
|
|
||||||
const USER_AGENT = `${pkg.name}/${pkg.version} (${pkg.bugs.url})`;
|
|
||||||
|
|
||||||
interface Stats {
|
interface Stats {
|
||||||
critical: number;
|
critical: number;
|
||||||
notices: number;
|
notices: number;
|
||||||
unmaintained: number;
|
unmaintained: number;
|
||||||
|
unsound: number;
|
||||||
other: number;
|
other: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,6 +87,7 @@ function getStats(
|
|||||||
let critical = 0;
|
let critical = 0;
|
||||||
let notices = 0;
|
let notices = 0;
|
||||||
let unmaintained = 0;
|
let unmaintained = 0;
|
||||||
|
let unsound = 0;
|
||||||
let other = 0;
|
let other = 0;
|
||||||
for (const vulnerability of vulnerabilities) {
|
for (const vulnerability of vulnerabilities) {
|
||||||
switch (vulnerability.advisory.informational) {
|
switch (vulnerability.advisory.informational) {
|
||||||
@@ -98,6 +97,9 @@ function getStats(
|
|||||||
case 'unmaintained':
|
case 'unmaintained':
|
||||||
unmaintained += 1;
|
unmaintained += 1;
|
||||||
break;
|
break;
|
||||||
|
case 'unsound':
|
||||||
|
unsound += 1;
|
||||||
|
break;
|
||||||
case null:
|
case null:
|
||||||
critical += 1;
|
critical += 1;
|
||||||
break;
|
break;
|
||||||
@@ -113,6 +115,10 @@ function getStats(
|
|||||||
unmaintained += 1;
|
unmaintained += 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'unsound':
|
||||||
|
unsound += 1;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
// Both yanked and informational types of kind
|
// Both yanked and informational types of kind
|
||||||
other += 1;
|
other += 1;
|
||||||
@@ -124,6 +130,7 @@ function getStats(
|
|||||||
critical: critical,
|
critical: critical,
|
||||||
notices: notices,
|
notices: notices,
|
||||||
unmaintained: unmaintained,
|
unmaintained: unmaintained,
|
||||||
|
unsound: unsound,
|
||||||
other: other,
|
other: other,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -132,8 +139,7 @@ function getSummary(stats: Stats): string {
|
|||||||
const blocks: string[] = [];
|
const blocks: string[] = [];
|
||||||
|
|
||||||
if (stats.critical > 0) {
|
if (stats.critical > 0) {
|
||||||
// TODO: Plural
|
blocks.push(`${stats.critical} advisories`);
|
||||||
blocks.push(`${stats.critical} advisory(ies)`);
|
|
||||||
}
|
}
|
||||||
if (stats.notices > 0) {
|
if (stats.notices > 0) {
|
||||||
blocks.push(`${stats.notices} notice${plural(stats.notices)}`);
|
blocks.push(`${stats.notices} notice${plural(stats.notices)}`);
|
||||||
@@ -141,6 +147,9 @@ function getSummary(stats: Stats): string {
|
|||||||
if (stats.unmaintained > 0) {
|
if (stats.unmaintained > 0) {
|
||||||
blocks.push(`${stats.unmaintained} unmaintained`);
|
blocks.push(`${stats.unmaintained} unmaintained`);
|
||||||
}
|
}
|
||||||
|
if (stats.unsound > 0) {
|
||||||
|
blocks.push(`${stats.unsound} unsound`);
|
||||||
|
}
|
||||||
if (stats.other > 0) {
|
if (stats.other > 0) {
|
||||||
blocks.push(`${stats.other} other`);
|
blocks.push(`${stats.other} other`);
|
||||||
}
|
}
|
||||||
@@ -154,15 +163,22 @@ export async function reportCheck(
|
|||||||
vulnerabilities: Array<interfaces.Vulnerability>,
|
vulnerabilities: Array<interfaces.Vulnerability>,
|
||||||
warnings: Array<interfaces.Warning>,
|
warnings: Array<interfaces.Warning>,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const client = github.getOctokit(token, {userAgent: USER_AGENT});
|
const { owner, repo } = github.context.repo;
|
||||||
const reporter = new checks.CheckReporter(client.rest, 'Security audit');
|
const api = giteaApi(process.env.GITHUB_SERVER_URL!, { token });
|
||||||
const stats = getStats(vulnerabilities, warnings);
|
const stats = getStats(vulnerabilities, warnings);
|
||||||
const summary = getSummary(stats);
|
const summary = getSummary(stats);
|
||||||
|
const body = {
|
||||||
|
description: 'Security Audit',
|
||||||
|
context: 'security-audit',
|
||||||
|
};
|
||||||
|
|
||||||
core.info(`Found ${summary}`);
|
core.info(`Found ${summary}`);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await reporter.startCheck('queued');
|
await api.repos.repoCreateStatus(owner, repo, github.context.sha, {
|
||||||
|
...body,
|
||||||
|
state: 'pending',
|
||||||
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// `GITHUB_HEAD_REF` is set only for forked repos,
|
// `GITHUB_HEAD_REF` is set only for forked repos,
|
||||||
// so we can check if it is a fork and not a base repo.
|
// so we can check if it is a fork and not a base repo.
|
||||||
@@ -193,16 +209,22 @@ See https://github.com/actions-rs/clippy-check/issues/2 for details.`);
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const body = makeReport(vulnerabilities, warnings);
|
// const body = makeReport(vulnerabilities, warnings);
|
||||||
const output = {
|
// const output = {
|
||||||
title: 'Security advisories found',
|
// title: 'Security advisories found',
|
||||||
summary: summary,
|
// summary: summary,
|
||||||
text: body,
|
// text: body,
|
||||||
};
|
// };
|
||||||
const status = stats.critical > 0 ? 'failure' : 'success';
|
const state = stats.critical > 0 ? 'failure' : 'success';
|
||||||
await reporter.finishCheck(status, output);
|
await api.repos.repoCreateStatus(owner, repo, github.context.sha, {
|
||||||
|
...body,
|
||||||
|
state,
|
||||||
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
await reporter.cancelCheck();
|
await api.repos.repoCreateStatus(owner, repo, github.context.sha, {
|
||||||
|
...body,
|
||||||
|
state: 'error',
|
||||||
|
});
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -223,13 +245,13 @@ async function alreadyReported(
|
|||||||
advisoryId: string,
|
advisoryId: string,
|
||||||
): Promise<boolean> {
|
): Promise<boolean> {
|
||||||
const { owner, repo } = github.context.repo;
|
const { owner, repo } = github.context.repo;
|
||||||
const client = github.getOctokit(token, {userAgent: USER_AGENT});
|
const api = giteaApi(process.env.GITHUB_SERVER_URL!, { token });
|
||||||
const results = await client.rest.search.issuesAndPullRequests({
|
const results = await api.repos.issueListIssues(owner, repo, {
|
||||||
q: `${advisoryId} in:title repo:${owner}/${repo}`,
|
q: advisoryId,
|
||||||
per_page: 1, // eslint-disable-line @typescript-eslint/camelcase
|
limit: 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (results.data.total_count > 0) {
|
if (results.data.length > 0) {
|
||||||
core.info(
|
core.info(
|
||||||
`Seems like ${advisoryId} is mentioned already in the issues/PRs, \
|
`Seems like ${advisoryId} is mentioned already in the issues/PRs, \
|
||||||
will not report an issue against it`,
|
will not report an issue against it`,
|
||||||
@@ -244,10 +266,11 @@ export async function reportIssues(
|
|||||||
token: string,
|
token: string,
|
||||||
vulnerabilities: Array<interfaces.Vulnerability>,
|
vulnerabilities: Array<interfaces.Vulnerability>,
|
||||||
warnings: Array<interfaces.Warning>,
|
warnings: Array<interfaces.Warning>,
|
||||||
|
labels: string[],
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const { owner, repo } = github.context.repo;
|
const { owner, repo } = github.context.repo;
|
||||||
|
|
||||||
const client = github.getOctokit(token, {userAgent: USER_AGENT});
|
const api = giteaApi(process.env.GITHUB_SERVER_URL!, { token });
|
||||||
|
|
||||||
for (const vulnerability of vulnerabilities) {
|
for (const vulnerability of vulnerabilities) {
|
||||||
const reported = await alreadyReported(
|
const reported = await alreadyReported(
|
||||||
@@ -261,12 +284,13 @@ export async function reportIssues(
|
|||||||
const body = nunjucks.renderString(templates.VULNERABILITY_ISSUE, {
|
const body = nunjucks.renderString(templates.VULNERABILITY_ISSUE, {
|
||||||
vulnerability: vulnerability,
|
vulnerability: vulnerability,
|
||||||
});
|
});
|
||||||
const issue = await client.rest.issues.create({
|
const issue = await api.repos.issueCreateIssue(owner, repo, {
|
||||||
owner: owner,
|
|
||||||
repo: repo,
|
|
||||||
title: `${vulnerability.advisory.id}: ${vulnerability.advisory.title}`,
|
title: `${vulnerability.advisory.id}: ${vulnerability.advisory.title}`,
|
||||||
body: body,
|
body,
|
||||||
});
|
});
|
||||||
|
for (const label of labels) {
|
||||||
|
core.warning(`Unable to add label ${label}`);
|
||||||
|
}
|
||||||
core.info(
|
core.info(
|
||||||
`Created an issue for ${vulnerability.advisory.id}: ${issue.data.html_url}`,
|
`Created an issue for ${vulnerability.advisory.id}: ${issue.data.html_url}`,
|
||||||
);
|
);
|
||||||
@@ -275,6 +299,8 @@ export async function reportIssues(
|
|||||||
for (const warning of warnings) {
|
for (const warning of warnings) {
|
||||||
let advisory: interfaces.Advisory;
|
let advisory: interfaces.Advisory;
|
||||||
switch (warning.kind) {
|
switch (warning.kind) {
|
||||||
|
case 'unsound':
|
||||||
|
case 'notice':
|
||||||
case 'unmaintained':
|
case 'unmaintained':
|
||||||
case 'informational':
|
case 'informational':
|
||||||
advisory = warning.advisory;
|
advisory = warning.advisory;
|
||||||
@@ -300,12 +326,13 @@ export async function reportIssues(
|
|||||||
warning: warning,
|
warning: warning,
|
||||||
advisory: advisory,
|
advisory: advisory,
|
||||||
});
|
});
|
||||||
const issue = await client.rest.issues.create({
|
const issue = await api.repos.issueCreateIssue(owner, repo, {
|
||||||
owner: owner,
|
|
||||||
repo: repo,
|
|
||||||
title: `${advisory.id}: ${advisory.title}`,
|
title: `${advisory.id}: ${advisory.title}`,
|
||||||
body: body,
|
body,
|
||||||
});
|
});
|
||||||
|
for (const label of labels) {
|
||||||
|
core.warning(`Unable to add label ${label}`);
|
||||||
|
}
|
||||||
core.info(
|
core.info(
|
||||||
`Created an issue for ${advisory.id}: ${issue.data.html_url}`,
|
`Created an issue for ${advisory.id}: ${issue.data.html_url}`,
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user