build: bump to go version 1.20.5

This commit is contained in:
Trong Huu Nguyen
2023-06-09 13:18:15 +02:00
parent 2925ebe9e4
commit cb1392ec97
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # ratchet:actions/setup-go@v3
with:
go-version: ">=1.20.4"
go-version: ">=1.20.5"
- name: Test Go
run: |
make test

View File

@@ -270,7 +270,7 @@ Sessions can be configured with a maximum lifetime with the `session.max-lifetim
There's also an endpoint that returns metadata about the user's session as a JSON object at `GET /oauth2/session`. This
endpoint will respond with HTTP status codes on errors:
- `401 Unauthorized` - no session cookie or matching session found
- `401 Unauthorized` - no session cookie or matching session found, or maximum lifetime reached
- `500 Internal Server Error` - the session store is unavailable, or Wonderwall wasn't able to process the request
Otherwise, an `HTTP 200 OK` is returned with the metadata with the `application/json` as the `Content-Type`.