Skip to content

Commit a520c70

Browse files
authored
update go-gitlab and oauth2 (#148)
1 parent 34f4983 commit a520c70

File tree

8 files changed

+78
-394
lines changed

8 files changed

+78
-394
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@
1212
},
1313
"[xml]": {
1414
"editor.defaultFormatter": "redhat.vscode-xml"
15+
},
16+
"[svg]": {
17+
"editor.defaultFormatter": "jock.svg"
1518
}
1619
}

docs/src/components/HomepageFeatures/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ type FeatureItem = {
1111
const FeatureList: FeatureItem[] = [
1212
{
1313
title: 'Easy to Use',
14-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
14+
Svg: require('@site/static/img/pablo-arroyo-_SEbdtH4ZLM-unsplash.svg').default,
1515
description: (
1616
<>
17-
Docusaurus was designed from the ground up to be easily installed and
18-
used to get your website up and running quickly.
17+
Awesome-CI was designed from the ground up to be easily installed and
18+
used to get your versioning up and running quickly.
1919
</>
2020
),
2121
},
22-
{
22+
/* {
2323
title: 'Focus on What Matters',
2424
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
2525
description: (
@@ -38,10 +38,10 @@ const FeatureList: FeatureItem[] = [
3838
be extended while reusing the same header and footer.
3939
</>
4040
),
41-
},
41+
}, */
4242
];
4343

44-
function Feature({title, Svg, description}: FeatureItem) {
44+
function Feature({ title, Svg, description }: FeatureItem) {
4545
return (
4646
<div className={clsx('col col--4')}>
4747
<div className="text--center">
Lines changed: 46 additions & 0 deletions
Loading

docs/static/img/undraw_docusaurus_mountain.svg

Lines changed: 0 additions & 171 deletions
This file was deleted.

docs/static/img/undraw_docusaurus_react.svg

Lines changed: 0 additions & 170 deletions
This file was deleted.

docs/static/img/undraw_docusaurus_tree.svg

Lines changed: 0 additions & 40 deletions
This file was deleted.

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ require (
99
github.com/google/go-github/v49 v49.1.0
1010
github.com/itchyny/gojq v0.12.12
1111
github.com/spf13/cobra v1.6.1
12-
github.com/xanzy/go-gitlab v0.80.2
13-
golang.org/x/oauth2 v0.5.0
12+
github.com/xanzy/go-gitlab v0.80.3
13+
golang.org/x/oauth2 v0.6.0
1414
gopkg.in/yaml.v2 v2.4.0
1515
)
1616

@@ -46,12 +46,12 @@ require (
4646
github.com/sirupsen/logrus v1.9.0
4747
github.com/skeema/knownhosts v1.1.0 // indirect
4848
github.com/xanzy/ssh-agent v0.3.3 // indirect
49-
golang.org/x/crypto v0.6.0 // indirect
50-
golang.org/x/mod v0.8.0 // indirect
51-
golang.org/x/net v0.7.0 // indirect
52-
golang.org/x/sys v0.5.0 // indirect
49+
golang.org/x/crypto v0.7.0 // indirect
50+
golang.org/x/mod v0.9.0 // indirect
51+
golang.org/x/net v0.8.0 // indirect
52+
golang.org/x/sys v0.6.0 // indirect
5353
golang.org/x/time v0.3.0 // indirect
54-
golang.org/x/tools v0.6.0 // indirect
54+
golang.org/x/tools v0.7.0 // indirect
5555
google.golang.org/appengine v1.6.7 // indirect
5656
google.golang.org/protobuf v1.28.1 // indirect
5757
gopkg.in/warnings.v0 v0.1.2 // indirect

0 commit comments

Comments
 (0)