.circleci/config.yml in alma-0.3.2 vs .circleci/config.yml in alma-0.3.3

- old
+ new

@@ -1,8 +1,8 @@ version: 2.1 orbs: - ruby: circleci/ruby@0.1.2 + ruby: circleci/ruby@1.2 workflows: version: 2 test-deploy: jobs: @@ -15,30 +15,30 @@ ignore: /.*/ jobs: build: docker: - - image: cimg/ruby:2.7.2-node + - image: cimg/ruby:2.7.2-browsers auth: username: $DOCKERHUB_USER password: $DOCKERHUB_PASSWORD executor: ruby/default steps: - checkout - run: name: Which bundler? command: bundle -v - - ruby/bundle-install + - run: bundle install - run: name: lint command: bundle exec rubocop - run: name: test command: bundle exec rake deploy: docker: - - image: circleci/ruby:2.7.2-node-browsers + - image: cimg/ruby:2.7.2-browsers working_directory: ~/repo steps: - checkout