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(deps): update axios to resolve vulnerability #282

Merged
merged 1 commit into from
Aug 12, 2024

fix(deps): update axios to resolve vulnerability

cecb332
Select commit
Loading
Failed to load commit list.
Merged

fix(deps): update axios to resolve vulnerability #282

fix(deps): update axios to resolve vulnerability
cecb332
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Aug 12, 2024 in 2m 49s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the dp/update-axios branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has four jobs, running in parallel.

Stage 1: Build-Test

This stage passed.

Job Node.js Python OS State
1378.1 18 Linux passed
1378.2 20 Linux passed
1378.3 22 Linux passed
1378.4 Detect-Secrets 3.12 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "cache": {
    "npm": false
  },
  "stages": [
    {
      "name": "Build-Test"
    },
    {
      "name": "Semantic-Release",
      "if": "(branch = main) AND (type IN (push, api)) AND (fork = false)"
    }
  ],
  "script": [
    "cd sdk-test-utilities && npm ci && cd ..",
    "npm run build",
    "npm run lint",
    "npm run test-travis"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Build-Test",
        "language": "node_js",
        "node_js": "18"
      },
      {
        "node_js": "20"
      },
      {
        "node_js": "22"
      },
      {
        "name": "Detect-Secrets",
        "language": "python",
        "python": "3.12",
        "install": [
          "pip install --upgrade \"git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets\""
        ],
        "script": [
          "detect-secrets scan --update .secrets.baseline",
          "detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline"
        ]
      },
      {
        "stage": "Semantic-Release",
        "language": "node_js",
        "node_js": "22",
        "script": [
          "npm run semantic-release"
        ]
      }
    ]
  }
}