Skip to content

Commit 088fdc7

Browse files
authored
bump (#112)
* bump * chore: remove syft * bump
1 parent e7089f1 commit 088fdc7

File tree

4 files changed

+5
-27
lines changed

4 files changed

+5
-27
lines changed

.github/workflows/release-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Checkout Repository to Runner Context
2323
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2424
- name: Setup Node
25-
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
25+
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
2626
with:
2727
node-version: "20.x"
2828
registry-url: "https://npm.pkg.github.com"

.github/workflows/super-devsecops.yml

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,10 @@ jobs:
2929
yarn install
3030
npx eslint .
3131
continue-on-error: true
32-
syft-source-sbom:
33-
name: SBOM for Source Code
34-
needs: code_quality
35-
permissions:
36-
contents: write
37-
runs-on: ubuntu-latest
38-
steps:
39-
- name: Checkout the code
40-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
41-
- name: Scan the source code and upload dependency results
42-
uses: anchore/sbom-action@f3355df2ccd621f5873fe3c7c653ebdc5ef1bcb2
43-
with:
44-
path: .
45-
dependency-snapshot: true
46-
format: spdx-json
4732
build:
4833
name: Build
4934
runs-on: ubuntu-latest
50-
needs: syft-source-sbom
35+
needs: code_quality
5136
strategy:
5237
matrix:
5338
node-version: [16.x, 18.x, 20.x]
@@ -59,7 +44,7 @@ jobs:
5944
- name: Checkout Repository to Runner Context
6045
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6146
- name: Use Node version ${{ matrix.node-version }}
62-
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
47+
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
6348
with:
6449
node-version: ${{ matrix.node-version }}
6550
cache: "yarn"
@@ -82,7 +67,7 @@ jobs:
8267
- name: Checkout Repository to Runner Context
8368
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
8469
- name: Use Node version ${{ matrix.node-version }}
85-
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
70+
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
8671
with:
8772
node-version: ${{ matrix.node-version }}
8873
cache: "yarn"
@@ -198,10 +183,3 @@ jobs:
198183
run: |
199184
docker build -t ghcr.io/stormsinbrewing/savvy-devsecops .
200185
docker push ghcr.io/stormsinbrewing/savvy-devsecops
201-
- name: Image SBOM Scan with Syft
202-
uses: anchore/sbom-action@f3355df2ccd621f5873fe3c7c653ebdc5ef1bcb2
203-
with:
204-
image: "ghcr.io/stormsinbrewing/savvy-devsecops"
205-
dependency-snapshot: true
206-
format: spdx-json
207-
artifact-name: spdx.docker.json

.syft.yaml renamed to .syft.yaml

File renamed without changes.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN yarn install --production
77
COPY . .
88
RUN yarn build
99

10-
FROM nginx:1.25.3-alpine@sha256:f2802c2a9d09c7aa3ace27445dfc5656ff24355da28e7b958074a0111e3fc076 as production
10+
FROM nginx:1.25.4-alpine@sha256:6a2f8b28e45c4adea04ec207a251fd4a2df03ddc930f782af51e315ebc76e9a9 as production
1111
ENV NODE_ENV production
1212
COPY --from=builder /app/build /usr/share/nginx/html
1313
COPY nginx.conf /etc/nginx/conf.d/default.conf

0 commit comments

Comments
 (0)