Skip to content

Commit 44219d0

Browse files
authored
Merge pull request #117 from Staffbase/dependabot/go_modules/github.com/ldez/ghactions-1.11.0
Bump github.com/ldez/ghactions from 1.10.0 to 1.11.0
2 parents b4abc4c + 7ce714b commit 44219d0

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed

catalog-info.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
apiVersion: backstage.io/v1alpha1
3+
kind: Component
4+
metadata:
5+
name: yamllint-action
6+
description: Lints yaml files and annotates every finding.
7+
annotations:
8+
github.com/project-slug: Staffbase/yamllint-action
9+
tags:
10+
- go
11+
- github-actions
12+
spec:
13+
type: service
14+
owner: diablo
15+
lifecycle: production

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ module github.com/Staffbase/yamllint-action
33
go 1.22.2
44

55
require (
6-
github.com/google/go-github/v62 v62.0.0
7-
github.com/ldez/ghactions v1.10.0
6+
github.com/google/go-github/v68 v68.0.0
7+
github.com/ldez/ghactions v1.11.0
88
)
99

1010
require (
1111
github.com/google/go-querystring v1.1.0 // indirect
12-
golang.org/x/oauth2 v0.20.0 // indirect
12+
golang.org/x/oauth2 v0.24.0 // indirect
1313
)

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
22
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
33
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
4-
github.com/google/go-github/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4=
5-
github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4=
4+
github.com/google/go-github/v68 v68.0.0 h1:ZW57zeNZiXTdQ16qrDiZ0k6XucrxZ2CGmoTvcCyQG6s=
5+
github.com/google/go-github/v68 v68.0.0/go.mod h1:K9HAUBovM2sLwM408A18h+wd9vqdLOEqTUCbnRIcx68=
66
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
77
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
8-
github.com/ldez/ghactions v1.10.0 h1:7Q0tYHdpPDhNwq2HzxypCfL/jBWFQa7UDD+I0JoNiGk=
9-
github.com/ldez/ghactions v1.10.0/go.mod h1:Vnd6ljT2XC/O6CkSckTQiiFsKlw+h6qtM6n9FOoHMEc=
10-
golang.org/x/oauth2 v0.20.0 h1:4mQdhULixXKP1rwYBW0vAijoXnkTG0BLCDRzfe1idMo=
11-
golang.org/x/oauth2 v0.20.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
8+
github.com/ldez/ghactions v1.11.0 h1:kU5qgCIgjw90nv9h24NFRDz4tVwwZBYCSeiB0UBeJEQ=
9+
github.com/ldez/ghactions v1.11.0/go.mod h1:HPIHAbCG/cZwhQT7dSTVmxIUPUF29BRgXs9uyCRaO6Q=
10+
golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
11+
golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
1212
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=

yamllint-action.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"strconv"
2626
"strings"
2727

28-
"github.com/google/go-github/v62/github"
28+
"github.com/google/go-github/v68/github"
2929
"github.com/ldez/ghactions"
3030
)
3131

0 commit comments

Comments
 (0)