File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - name : Checkout
1919 uses : actions/checkout@v2
2020 - name : Cache dependencies
21- uses : actions/cache@v2
21+ uses : actions/cache@v4
2222 with :
2323 path : ~/go/pkg/mod
2424 key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change 11package adcom1
22
33// IPLocationService represents services and/or vendors used for resolving IP addresses to geolocations.
4- type IPLocationService int8
4+ type IPLocationService int16
55
66// Services and/or vendors used for resolving IP addresses to geolocations.
77const (
8- LocationServiceIP2Location IPLocationService = 1 // ip2location
9- LocationServiceNeustar IPLocationService = 2 // Neustar (Quova)
10- LocationServiceMaxMind IPLocationService = 3 // MaxMind
11- LocationServiceNetAcuity IPLocationService = 4 // NetAcuity (Digital Element)
8+ LocationServiceIP2Location IPLocationService = 1 // ip2location
9+ LocationServiceNeustar IPLocationService = 2 // Neustar (Quova)
10+ LocationServiceMaxMind IPLocationService = 3 // MaxMind
11+ LocationServiceNetAcuity IPLocationService = 4 // NetAcuity (Digital Element)
12+ LocationService51DegreesHighConfidence IPLocationService = 511 // 51Degrees (High Confidence)
13+ LocationService51DegreesMediumConfidence IPLocationService = 512 // 51Degrees (Medium Confidence)
1214)
You can’t perform that action at this time.
0 commit comments