Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/ionosdk vulnerability #17

Merged
merged 2 commits into from
Oct 4, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch:

env:
node-version: 16
node-version: 22

jobs:
test:
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $ npm install -g @ionos-cloud/ionossdk
$ ionossdk COMMAND
running command...
$ ionossdk (-v|--version|version)
@ionos-cloud/ionossdk/1.2.3 darwin-x64 node-v16.0.0
@ionos-cloud/ionossdk/1.2.7 linux-x64 node-v22.3.0
$ ionossdk --help [COMMAND]
USAGE
$ ionossdk COMMAND
Expand Down Expand Up @@ -47,7 +47,7 @@ OPTIONS
-h, --help show CLI help
```

_See code: [src/commands/cache.ts](https://github.com/ionos-cloud/ionossdk/blob/v1.2.1/src/commands/cache.ts)_
_See code: [src/commands/cache.ts](https://github.com/ionos-cloud/ionossdk/blob/v1.2.7/src/commands/cache.ts)_

## `ionossdk env`

Expand All @@ -61,15 +61,15 @@ OPTIONS
-a, --assets-dir=assets-dir (required) sdk assets directory (templates, scripts etc)
-d, --debug show debug information
-h, --help show CLI help
-i, --artifactId=artifactId artifact id, can be set from env variable IONOSSDK_ARTIFACTID
-n, --name=name (required) sdk to build
-p, --package=packageName sdk package name, can be set also from env var IONOSSDK_PACKAGE
-i, --artifactId=artifactId artifact id, can be set from also env var IONOSSDK_ARTIFACTID
-o, --output-dir=output-dir output dir
-p, --package=package sdk package name, can be set from env var IONOSSDK_PACKAGE
-s, --spec=spec [default: none.json] api spec
-v, --version=version [default: 0.0.0] sdk version
```

_See code: [src/commands/env.ts](https://github.com/ionos-cloud/ionossdk/blob/v1.2.1/src/commands/env.ts)_
_See code: [src/commands/env.ts](https://github.com/ionos-cloud/ionossdk/blob/v1.2.7/src/commands/env.ts)_

## `ionossdk generate`

Expand All @@ -85,15 +85,15 @@ OPTIONS
-c, --no-cache don't use the cache
-d, --debug show debug information
-h, --help show CLI help
-i, --artifactId=artifactId artifact id, can be set from env variable IONOSSDK_ARTIFACTID
-n, --name=name (required) sdk to build
-p, --package=packageName sdk package name, can be set also from env var IONOSSDK_PACKAGE
-i, --artifactId=artifactId artifact id, can be set also from env var IONOSSDK_ARTIFACTID
-o, --output-dir=output-dir output dir
-p, --package=package sdk package name, can be set from env var IONOSSDK_PACKAGE
-s, --spec=spec (required) api spec
-v, --version=version (required) sdk version
```

_See code: [src/commands/generate.ts](https://github.com/ionos-cloud/ionossdk/blob/v1.2.1/src/commands/generate.ts)_
_See code: [src/commands/generate.ts](https://github.com/ionos-cloud/ionossdk/blob/v1.2.7/src/commands/generate.ts)_

## `ionossdk help [COMMAND]`

Expand Down
Loading
Loading