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

[Snyk] Fix for 1 vulnerabilities #539

Closed

fix: Gemfile to reduce vulnerabilities

e116a92
Select commit
Loading
Failed to load commit list.
Closed

[Snyk] Fix for 1 vulnerabilities #539

fix: Gemfile to reduce vulnerabilities
e116a92
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Oct 8, 2023 in 1m 9s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #539 [Snyk] Fix for 1 vulnerabilities.
Any changes that have been made to the develop branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Bionic)
Ruby Version 3.2.1
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "rvm": [
    "3.2.1"
  ],
  "deploy": [
    {
      "deployment_strategy": "rolling",
      "provider": "cloudfoundry",
      "edge": true,
      "api": "$API_URI",
      "username": "$USERNAME",
      "password": "$PASSWORD",
      "organization": "$ORG_NAME",
      "space": "$SPACE_NAME",
      "manifest": "manifest.$SPACE_NAME.yaml",
      "on": {
        "repo": "Crown-Commercial-Service/pmp-idam",
        "all_branches": true,
        "condition": [
          "$DEPLOY_BRANCH = TRUE"
        ]
      }
    }
  ],
  "branches": {
    "only": [
      "develop",
      "staging",
      "main"
    ]
  },
  "env": [
    "global={:RAILS_ENV=>\"test\"}={:CC_TEST_REPORTER_ID=>\"$CC_TEST_REPORTER_ID\"}"
  ],
  "services": [
    "postgresql"
  ],
  "addons": {
    "postgresql": "11"
  },
  "before_script": [
    "sudo apt-get -qq update",
    "sudo apt-get install -y postgresql-11-postgis-2.5",
    "psql -U postgres -c 'create database pmp_idam_test'",
    "psql -U postgres -d pmp_idam_test -c 'create extension postgis'",
    "curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter",
    "chmod +x ./cc-test-reporter",
    "./cc-test-reporter before-build"
  ],
  "script": [
    "bundle exec rake db:setup",
    "bundle exec rake"
  ],
  "after_script": [
    "./cc-test-reporter after-build --debug --exit-code $TRAVIS_TEST_RESULT"
  ]
}