Skip to content

Commit

Permalink
Readme update to use v2
Browse files Browse the repository at this point in the history
  • Loading branch information
wlewis4321 committed Jul 8, 2024
1 parent fe3edeb commit 116233d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## AWS Secrets Manager Go Caching Client

[![Go Reference](https://pkg.go.dev/badge/github.com/aws/aws-secretsmanager-caching-go/secretcache.svg)](https://pkg.go.dev/github.com/aws/aws-secretsmanager-caching-go/secretcache)
[![Go Reference](https://pkg.go.dev/badge/github.com/aws/aws-secretsmanager-caching-go/v2/secretcache.svg)](https://pkg.go.dev/github.com/aws/aws-secretsmanager-caching-go/v2/secretcache)
[![Tests](https://github.com/aws/aws-secretsmanager-caching-go/actions/workflows/go.yml/badge.svg?event=push)](https://github.com/aws/aws-secretsmanager-caching-go/actions/workflows/go.yml)
[![codecov](https://codecov.io/gh/aws/aws-secretsmanager-caching-go/branch/master/graph/badge.svg?token=JZxWjXaZOC)](https://codecov.io/gh/aws/aws-secretsmanager-caching-go)

Expand Down Expand Up @@ -37,7 +37,7 @@ package main

import (
"github.com/aws/aws-lambda-go/lambda"
"github.com/aws/aws-secretsmanager-caching-go/secretcache"
"github.com/aws/aws-secretsmanager-caching-go/v2/secretcache"
)

var(
Expand Down
6 changes: 3 additions & 3 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: '1.20'
build:
commands:
- export GO111MODULE=on && go test github.com/aws/aws-secretsmanager-caching-go/secretcache -v
- export GO111MODULE=on && go test github.com/aws/aws-secretsmanager-caching-go/scintegtests -v
- export GO111MODULE=on && go test github.com/aws/aws-secretsmanager-caching-go/v2/secretcache -v
- export GO111MODULE=on && go test github.com/aws/aws-secretsmanager-caching-go/v2/scintegtests -v

0 comments on commit 116233d

Please sign in to comment.