Skip to content

Bump react-icons from 4.11.0 to 5.2.0 in /ui #2079

Bump react-icons from 4.11.0 to 5.2.0 in /ui

Bump react-icons from 4.11.0 to 5.2.0 in /ui #2079

Workflow file for this run

# Builds and scans the docker container, using the anchore plugin
# https://github.com/marketplace/actions/anchore-container-scan
name: Container Scanning
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
api:
name: API Container Scan
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Build Dockerfile πŸ‹
run: |
cd api
docker build -t localbuild/snnap_api:latest .
- name: Scan Image πŸ•΅οΈβ€β™‚οΈ
id: scan-api
uses: anchore/scan-action@v3
with:
image: "localbuild/snnap_api:latest"
acs-report-enable: true
fail-build: true
severity-cutoff: high
- name: Upload Anchore Scan SARIF Report πŸ“Š
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.scan-api.outputs.sarif }}
category: api
ui:
name: UI Container Scan
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Build Dockerfile πŸ‹
run: |
cd ui
docker build -t localbuild/snnap_ui:latest .
- name: Scan Image πŸ•΅οΈβ€β™‚οΈ
id: scan-ui
uses: anchore/scan-action@v3
with:
image: "localbuild/snnap_ui:latest"
acs-report-enable: true
fail-build: true
severity-cutoff: high
- name: Upload Anchore Scan SARIF Report πŸ“Š
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.scan-ui.outputs.sarif }}
category: ui
sql:
name: SQL Container Scan
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Build Dockerfile πŸ‹
run: |
cd ui
docker build -t localbuild/snnap_sql:latest .
- name: Scan Image πŸ•΅οΈβ€β™‚οΈ
id: scan-sql
uses: anchore/scan-action@v3
with:
image: "localbuild/snnap_sql:latest"
acs-report-enable: true
fail-build: true
severity-cutoff: high
- name: Upload Anchore Scan SARIF Report πŸ“Š
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.scan-sql.outputs.sarif }}
category: sql