diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e75794c0b..1bc66129e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,16 +17,16 @@ jobs: strategy: matrix: - go_version: [1.19.x] + go_version: [1.20.x] steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go_version }} - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test run: go test -v ./... diff --git a/README_PT_BR.md b/README_PT_BR.md index df94d769d5..7564ffa3a8 100644 --- a/README_PT_BR.md +++ b/README_PT_BR.md @@ -475,7 +475,7 @@ $ go get github.com/kataras/iris/v12@latest **Run** ```sh -$ go mod tidy -compat=1.19 # -compat="1.19" for windows. +$ go mod tidy -compat=1.20 # -compat="1.20" for windows. $ go run . ```