Skip to content

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 #1932

Bump golang.org/x/crypto from 0.14.0 to 0.17.0

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 #1932

Workflow file for this run

name: BCDA CI Workflow
on:
push:
branches:
- master
pull_request:
env:
COMPOSE_INTERACTIVE_NO_CLI: 1
VAULT_PW: ${{ secrets.VAULT_PW }}
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Decrypt secrets
run: |
echo $VAULT_PW > .vault_password
bash ops/secrets --decrypt
mv -fv shared_files/encrypted/* shared_files/decrypted/
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build the stack
run: |
make docker-bootstrap
- name: Run all tests
run: |
make test
- name: Generate codecov report
uses: codecov/codecov-action@v2
with:
files: ./test_results/latest/testcoverage.out # optional
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)