Skip to content

Commit 70e40a2

Browse files
committed
release 4.14
1 parent 8f28213 commit 70e40a2

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/go.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Go
22

33
on:
44
push:
5-
branches: [ release-4.13 ]
5+
branches: [ release-4.14 ]
66
pull_request:
7-
branches: [ release-4.13 ]
7+
branches: [ release-4.14 ]
88

99
jobs:
1010
build:
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v4
1717
with:
18-
go-version: '1.19'
18+
go-version: '1.20'
1919

2020
- name: Build
2121
run: go build -v ./...

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/openshift-sustaining/arc-test-component-b
22

3-
go 1.19
3+
go 1.20
4+
5+
require golang.org/x/net v0.33.0
46

5-
require golang.org/x/net v0.24.0
67
require golang.org/x/oauth2 v0.26.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
2-
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
1+
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
2+
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
33
golang.org/x/oauth2 v0.26.0 h1:afQXWNNaeC4nvZ0Ed9XvCCzXM6UHJG7iCg0W4fPqSBE=
44
golang.org/x/oauth2 v0.26.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
func main() {
11-
jws.Verify("maliciousToken", nil)
11+
jws.Decode("someToken")
1212

1313
maliciousHTML := strings.Repeat("<template>", 100000)
1414

0 commit comments

Comments
 (0)