Update scripts to point to agent version 2.13.0 #170
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| build-ubuntu: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Test install on Ubuntu | |
| run: | | |
| chmod +x ./install-linux.sh | |
| VANTA_SKIP_REGISTRATION_CHECK=1 VANTA_KEY=FAKEKEY ./install-linux.sh | |
| - name: Check that it's running correctly | |
| run: /var/vanta/vanta-cli status | |
| build-macos: | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Test install on macOS | |
| run: | | |
| chmod +x ./install-macos.sh | |
| VANTA_KEY=FAKEKEY [email protected] VANTA_REGION=us ./install-macos.sh | |
| - name: Check that it's running correctly | |
| run: /usr/local/vanta/vanta-cli status |