Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci-outpost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v8
with:
<<<<<<< HEAD
version: latest
=======
>>>>>>> 95e758670 (ci: bump golangci lint (#25513))
Comment thread
BeryJu marked this conversation as resolved.
Outdated
args: --timeout 5000s --verbose
skip-cache: true
test-unittest:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module goauthentik.io

go 1.26.0
go 1.27.0
Comment thread
emilburzo marked this conversation as resolved.
Outdated

require (
beryju.io/ldap v0.2.1
Expand Down
5 changes: 2 additions & 3 deletions internal/utils/tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@ import (

func GetTLSConfig() *tls.Config {
// Based on
// https://ssl-config.mozilla.org/#server=go&version=1.25&config=intermediate&guideline=5.7
// https://configurator.tlsref.org/#server=go&version=1.27&config=intermediate&hsts&guideline=6.0
tlsConfig := &tls.Config{
MinVersion: tls.VersionTLS12,
CurvePreferences: []tls.CurveID{
tls.X25519,
tls.CurveP256,
tls.CurveP384,
},
PreferServerCipherSuites: true,
CipherSuites: []uint16{},
CipherSuites: []uint16{},
}

excludedCiphers := []uint16{
Expand Down
Loading