Pull Request #22 Bump sinatra from 2.0.1 to 2.2.3

Bumps [sinatra](https://github.com/sinatra/sinatra) from 2.0.1 to 2.2.3.
- [Release notes](https://github.com/sinatra/sinatra/releases)
- [Changelog](https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sinatra/sinatra/compare/v2.0.1...v2.2.3)

---
updated-dependencies:
- dependency-name: sinatra
dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

dependabot[bot] authored GitHub committed

Pull request event #90 passed

  • Ran for
  • Total time
  • New branch build
travis-ci/build-stages-demo:.travis.yml@11a4587
sudo: false

jobs:
  include:
    - stage: unit tests
      script: echo one
    - stage: unit tests
      script: echo two
    - stage: deploy to staging
      script: skip
      deploy: &heroku
        provider: heroku
        app: sf-stages-staging
        api_key: $HEROKU_AUTH_TOKEN
        on: sf-stages-demo
    - stage: test staging
      script: 'curl http://sf-stages-staging.herokuapp.com'
    - stage: deploy to production
      script: /bin/true
      deploy:
        <<: *heroku
        app: sf-stages-production
    - stage: test production
      script: 'curl http://sf-stages-production.herokuapp.com'
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "jobs": {
    "include": [
      {
        "stage": "unit tests",
        "script": [
          "echo one"
        ]
      },
      {
        "stage": "unit tests",
        "script": [
          "echo two"
        ]
      },
      {
        "stage": "deploy to staging",
        "script": [
          "skip"
        ],
        "deploy": [
          {
            "provider": "heroku",
            "strategy": "api",
            "app": "sf-stages-staging",
            "api_key": "$HEROKU_AUTH_TOKEN",
            "on": {
              "branch": [
                "sf-stages-demo"
              ]
            }
          }
        ]
      },
      {
        "stage": "test staging",
        "script": [
          "curl http://sf-stages-staging.herokuapp.com"
        ]
      },
      {
        "stage": "deploy to production",
        "script": [
          "/bin/true"
        ],
        "deploy": [
          {
            "provider": "heroku",
            "strategy": "api",
            "app": "sf-stages-production",
            "api_key": "$HEROKU_AUTH_TOKEN",
            "on": {
              "branch": [
                "sf-stages-demo"
              ]
            }
          }
        ]
      },
      {
        "stage": "test production",
        "script": [
          "curl http://sf-stages-production.herokuapp.com"
        ]
      }
    ]
  }
}