From 56a6d8d35b65d84848cfa7bcb1c197e5453a4001 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 28 Mar 2023 14:55:26 +0900 Subject: [PATCH] ci: update golangci-lint to v1.52.2, update Go version (#3740) * ci: update golangci-lint to v1.52.2, update Go version * run gofumpt --- .github/workflows/lint.yml | 4 ++-- internal/handshake/crypto_setup.go | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 74a2938f..e244a94e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,8 +27,8 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: "1.19.x" + go-version: "1.20.x" - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: - version: v1.48.0 + version: v1.52.2 diff --git a/internal/handshake/crypto_setup.go b/internal/handshake/crypto_setup.go index 310a34c0..0420a5f9 100644 --- a/internal/handshake/crypto_setup.go +++ b/internal/handshake/crypto_setup.go @@ -408,8 +408,7 @@ readLoop: func (h *cryptoSetup) checkEncryptionLevel(msgType messageType, encLevel protocol.EncryptionLevel) error { var expected protocol.EncryptionLevel switch msgType { - case typeClientHello, - typeServerHello: + case typeClientHello, typeServerHello: expected = protocol.EncryptionInitial case typeEncryptedExtensions, typeCertificate,