Skip to content

Commit

Permalink
replace use of deprecated CI docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
bhamail committed Nov 8, 2022
1 parent c62f562 commit ff9e4f6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ orbs:
executors:
go:
docker:
- image: circleci/golang:1.17
- image: cimg/go:1.17

jobs:
release:
Expand All @@ -35,14 +35,13 @@ jobs:
environment:
GO111MODULE: "on"
TEST_RESULTS: /tmp/test-results
working_directory: /go/src/github.com/sonatype-nexus-community/nancy
steps:
- setup_remote_docker
- checkout
- run: mkdir -p $TEST_RESULTS/gotest
- restore_cache:
keys:
- go-mod-v1-{{ checksum "go.sum" }}
- go-mod-v2-{{ checksum "go.sum" }}
- run: go install github.com/jstemmer/go-junit-report@latest
- run: make headers
- run: make deps
Expand All @@ -51,9 +50,9 @@ jobs:
- run: make integration-test
- run: make docker-integration-tests
- save_cache:
key: go-mod-v1-{{ checksum "go.sum" }}
key: go-mod-v2-{{ checksum "go.sum" }}
paths:
- "/go/pkg/mod"
- "$HOME/go/pkg/mod"
- store_artifacts:
path: /tmp/test-results/
- store_test_results:
Expand Down

0 comments on commit ff9e4f6

Please sign in to comment.