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

Upgrade dep version #1918

Merged
merged 2 commits into from Mar 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -15,23 +15,23 @@ executors:
resource_class: small
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
mymove_medium:
resource_class: medium
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
mymove_large:
resource_class: large
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
# `mymove_and_postgres_medium` adds a secondary postgres container to be used during testing.
mymove_and_postgres_medium:
resource_class: medium
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
- image: postgres:10.5
environment:
- POSTGRES_PASSWORD: mysecretpassword
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,6 +5,7 @@
# dependencies
/vendor
/node_modules
/.vendor-new

/pkg/gen
/pkg/assets
Expand Down
2 changes: 1 addition & 1 deletion bin/check_dep_version
Expand Up @@ -2,7 +2,7 @@

set -eu -o pipefail

TARGET_VERSION="v0.5.0"
TARGET_VERSION="v0.5.1"
CURRENT_VERSION=$(dep version | grep version | cut -f2 -d':' | awk '{$1=$1};1' | head -n 1)

if [[ "$CURRENT_VERSION" = "$TARGET_VERSION" ]]; then
Expand Down