diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55a0ccc..7bc41fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: go-version: ${{ matrix.go_version }} - name: Checkout Source uses: actions/checkout@v3 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -48,7 +48,7 @@ jobs: go-version: '1.18' - name: Checkout Source uses: actions/checkout@v3 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/go.mod b/go.mod index e2e62d7..555012a 100644 --- a/go.mod +++ b/go.mod @@ -7,11 +7,11 @@ require ( github.com/mozilla/tls-observatory v0.0.0-20210609171429-7bc42856d2e5 github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 github.com/onsi/ginkgo/v2 v2.1.3 - github.com/onsi/gomega v1.18.1 - golang.org/x/crypto v0.0.0-20220313003712-b769efc7c000 + github.com/onsi/gomega v1.19.0 + golang.org/x/crypto 2c7772ba3064 golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 golang.org/x/text v0.3.7 - golang.org/x/tools v0.1.9 + golang.org/x/tools v0.1.10 gopkg.in/yaml.v2 v2.4.0 )