From faa38e56d36d5ecbb2a04a38cdb103a0bffccb18 Mon Sep 17 00:00:00 2001 From: voluntas Date: Wed, 11 Oct 2023 11:11:45 +0900 Subject: [PATCH] =?UTF-8?q?HTTP/2=20Rapid=20Reset=20=E5=AF=BE=E7=AD=96?= =?UTF-8?q?=E3=81=AE=E3=81=9F=E3=82=81=20Go=201.21.3=20=E4=BB=A5=E9=99=8D?= =?UTF-8?q?=E3=81=A7=E3=83=93=E3=83=AB=E3=83=89=E3=81=99=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 3 ++- .github/workflows/test.yaml | 36 +++++++++++++++++------------------ CHANGES.md | 6 ++++++ 3 files changed, 26 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35caa20..ef8ac66 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,8 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version-file: './go.mod' + # go-version-file: ./go.mod + go-version: "^1.21.3" - run: go install github.com/tcnksm/ghr@latest diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8c9b213..a843960 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -3,34 +3,34 @@ name: Go Build & Test on: push: branches-ignore: - - 'main' + - "main" tags-ignore: - - '*' + - "*" jobs: - build: name: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version-file: './go.mod' + - name: Set up Go + uses: actions/setup-go@v4 + with: + # go-version-file: ./go.mod + go-version: "^1.21.3" - - run: go version + - run: go version - - run: go fmt . + - run: go fmt . - - uses: dominikh/staticcheck-action@v1.3.0 - with: - version: "2023.1.2" - install-go: false + - uses: dominikh/staticcheck-action@v1.3.0 + with: + version: "2023.1.2" + install-go: false - - name: Test - run: make test + - name: Test + run: make test - - name: Build - run: make + - name: Build + run: make diff --git a/CHANGES.md b/CHANGES.md index 9a5feba..2f4a00f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,12 @@ ## develop +## 2023.5.1 + +- [FIX] HTTP/2 Rapid Reset 対策として Go 1.21.3 以上でリリースバイナリを作成するよう修正する + - https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo + - @voluntas + ## 2023.5.0 - [ADD] -V で VERSION ファイルを表示する