Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ jobs:
with:
node-version: 22.11.0
registry-url: https://npm.echohq.com/
- name: Configure echohq auth (both hosts)
env:
ECHO_LIBRARIES_ACCESS_KEY: ${{ secrets.ECHO_LIBRARIES_ACCESS_KEY }}
run: |
npm config set //npm.echohq.com/:_authToken "${ECHO_LIBRARIES_ACCESS_KEY}"
npm config set //packages.echohq.com/:_authToken "${ECHO_LIBRARIES_ACCESS_KEY}"
- run: npm ci
env:
ECHO_LIBRARIES_ACCESS_KEY: ${{ secrets.ECHO_LIBRARIES_ACCESS_KEY }}
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,6 @@ jobs:
node-version: 22.11.0
registry-url: https://npm.echohq.com/

# CONFIGURE ECHOHQ AUTH
- name: Configure echohq auth (both hosts)
env:
ECHO_LIBRARIES_ACCESS_KEY: ${{ secrets.ECHO_LIBRARIES_ACCESS_KEY }}
run: |
npm config set //npm.echohq.com/:_authToken "${ECHO_LIBRARIES_ACCESS_KEY}"
npm config set //packages.echohq.com/:_authToken "${ECHO_LIBRARIES_ACCESS_KEY}"

# CONFIGURE GITHUB PACKAGES AUTH FOR PUBLISH
- name: Configure GitHub Packages auth
env:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/scan-github-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Scan for GitHub Actions issues

on:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.repository }}-${{ github.ref }}

permissions: {}

jobs:
zizmor:
name: Scan repository contents
runs-on: cx-private-ubuntu-x64
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false

- name: Run Zizmor linter
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
with:
advanced-security: false
annotations: false
persona: pedantic
fail-on-no-inputs: false
online-audits: false
4 changes: 2 additions & 2 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Default registry for most packages
registry=https://npm.echohq.com/
//npm.echohq.com/:_authToken=
//packages.echohq.com/:_authToken=
//npm.echohq.com/:_authToken=${ECHO_LIBRARIES_ACCESS_KEY}
//packages.echohq.com/:_authToken=${ECHO_LIBRARIES_ACCESS_KEY}
always-auth=true
ignore-scripts=true
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@Checkmarx/ast-cli-javascript-wrapper",
"version": "0.0.158",
"version": "0.0.159",
"description": "AST CLI Javascript wrapper",
"main": "dist/main/wrapper/CxWrapper.js",
"typings": "dist/main/wrapper/CxWrapper.d.ts",
Expand Down
Loading