Skip to content

Commit 2cd8f8a

Browse files
committed
nextlinux add
1 parent abdc9eb commit 2cd8f8a

File tree

4 files changed

+18
-24
lines changed

4 files changed

+18
-24
lines changed

.github/workflows/update-grype-release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
upgrade-grype:
1212
runs-on: ubuntu-latest
13-
if: github.repository == 'anchore/scan-action'
13+
if: github.repository == 'nextlinux/scan-action'
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Get latest Grype version
@@ -25,11 +25,7 @@ jobs:
2525
npm run build
2626
# export the version for use with create-pull-request:
2727
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_OUTPUT
28-
- uses: tibdex/github-app-token@v1
29-
id: generate-token
30-
with:
31-
app_id: ${{ secrets.TOKEN_APP_ID }}
32-
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
28+
3329
- uses: peter-evans/create-pull-request@v4
3430
with:
3531
signoff: true
@@ -39,4 +35,4 @@ jobs:
3935
commit-message: "chore(deps): update Grype to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
4036
title: "chore(deps): update Grype to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
4137
body: "Update Grype to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
42-
token: ${{ steps.generate-token.outputs.token }}
38+
token: ${{ secret.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
## Version 2.0.2 - 2020-11-11
44

5-
* Update `actions/core` to use version `1.2.6` [(Issue #71)](https://github.com/anchore/scan-action/issues/71)
6-
75
## Version 2.0.1 - 2020-02-11
86

97
Fixes:

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# GitHub Action for Vulnerability Scanning
22

33
[![Test Status][test-img]][test]
4-
[![GitHub release](https://img.shields.io/github/release/anchore/scan-action.svg)](https://github.com/anchore/scan-action/releases/latest)
5-
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/anchore/scan-action/blob/main/LICENSE)
4+
[![GitHub release](https://img.shields.io/github/release/nextlinux/scan-action.svg)](https://github.com/nextlinux/scan-action/releases/latest)
5+
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/nextlinux/scan-action/blob/main/LICENSE)
66
[![Slack Invite](https://img.shields.io/badge/Slack-Join-blue?logo=slack)](https://anchore.com/slack)
77

88
:zap: _Find threats in files or containers at lightning speed_ :zap:
@@ -54,7 +54,7 @@ The simplest workflow for scanning a `localbuild/testimage` container:
5454
load: true
5555

5656
- name: Scan image
57-
uses: anchore/scan-action@v3
57+
uses: nextlinux/scan-action@v3
5858
with:
5959
image: "localbuild/testimage:latest"
6060
```
@@ -65,7 +65,7 @@ To scan a directory, add the following step:
6565
6666
```yaml
6767
- name: Scan current project
68-
uses: anchore/scan-action@v3
68+
uses: nxtlinux/scan-action@v3
6969
with:
7070
path: "."
7171
```
@@ -97,7 +97,7 @@ With a different severity level:
9797

9898
```yaml
9999
- name: Scan image
100-
uses: anchore/scan-action@v3
100+
uses: nextlinux/scan-action@v3
101101
with:
102102
image: "localbuild/testimage:latest"
103103
fail-build: true
@@ -108,7 +108,7 @@ Optionally, change the `fail-build` field to `false` to avoid failing the build
108108

109109
```yaml
110110
- name: Scan image
111-
uses: anchore/scan-action@v3
111+
uses: nextlinux/scan-action@v3
112112
with:
113113
image: "localbuild/testimage:latest"
114114
fail-build: false
@@ -152,7 +152,7 @@ jobs:
152152
- uses: actions/checkout@v2
153153
- name: Build the container image
154154
run: docker build . --file Dockerfile --tag localbuild/testimage:latest
155-
- uses: anchore/scan-action@v3
155+
- uses: nextlinux/scan-action@v3
156156
with:
157157
image: "localbuild/testimage:latest"
158158
fail-build: true
@@ -217,20 +217,20 @@ Output parameters:
217217
Example usage:
218218

219219
```yaml
220-
- uses: anchore/scan-action/download-grype@v3
220+
- uses: nextliniux/scan-action/download-grype@v3
221221
id: grype
222222
- run: ${{steps.grype.outputs.cmd}} dir:.
223223
```
224224

225225
## Contributing
226226

227-
We love contributions, feedback, and bug reports. For issues with the invocation of this action, file [issues](https://github.com/anchore/scan-action/issues) in this repository.
227+
We love contributions, feedback, and bug reports. For issues with the invocation of this action, file [issues](https://github.com/nextlinux/scan-action/issues) in this repository.
228228

229229
For contributing, see [Contributing](CONTRIBUTING.md).
230230

231231
## More Information
232232

233-
For documentation on Grype itself, including other output capabilities, see the [grype project](https://github.com/anchore/grype)
233+
For documentation on Grype itself, including other output capabilities, see the [grype project](https://github.com/nextlinux/grype)
234234

235235
Connect with the community directly on [slack](https://anchore.com/slack).
236236

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "anchore-scan-action",
2+
"name": "nextlinux-scan-action",
33
"version": "2.0.2",
4-
"description": "Anchore image scan github action",
4+
"description": "Nextlinux image scan github action",
55
"main": "index.js",
66
"directories": {
77
"lib": "lib",
@@ -20,7 +20,7 @@
2020
},
2121
"repository": {
2222
"type": "git",
23-
"url": "git+https://github.com/anchore/anchore-scan-action.git"
23+
"url": "git+https://github.com/nextlinux/nextlinux-scan-action.git"
2424
},
2525
"keywords": [
2626
"image",
@@ -29,9 +29,9 @@
2929
"author": "Anchore Inc.",
3030
"license": "MIT",
3131
"bugs": {
32-
"url": "https://github.com/anchore/anchore-scan-action/issues"
32+
"url": "https://github.com/nextlinux/nextlinux-scan-action/issues"
3333
},
34-
"homepage": "https://github.com/anchore/anchore-scan-action#readme",
34+
"homepage": "https://github.com/nextlinux/nextlinuxe-scan-action#readme",
3535
"dependencies": {
3636
"@actions/core": "^1.10.0",
3737
"@actions/exec": "^1.1.1",

0 commit comments

Comments
 (0)