Skip to content

Commit ce2c619

Browse files
Ramkumar Chinchanihallyn
authored andcommitted
chore(deps): fix dependabot alerts
#336 #337 #338 #339 #340 #341 #342 #343 Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
1 parent b9fe176 commit ce2c619

File tree

5 files changed

+58
-45
lines changed

5 files changed

+58
-45
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
privilege-level: ${{fromJson(inputs.privilege-level)}}
2525
name: "golang ${{ matrix.go-version }} privilege ${{ matrix.privilege-level }}"
2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828
- name: Set up golang ${{ matrix.go-version }}
29-
uses: actions/setup-go@v2
29+
uses: actions/setup-go@v3
3030
with:
3131
go-version: ${{ matrix.go-version }}
3232
- name: install dependencies
@@ -43,7 +43,7 @@ jobs:
4343
make check PRIVILEGE_LEVEL=${{ matrix.privilege-level }}
4444
env:
4545
REGISTRY_URL: localhost:5000
46-
- uses: actions/cache@v2
46+
- uses: actions/cache@v3
4747
id: restore-build
4848
with:
4949
path: stacker

.github/workflows/commit-msg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
- name: Check Commit Type
2121
uses: gsactions/commit-message-checker@v2
2222
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# needs ci for the cached stacker binary
2222
needs: ci
2323
steps:
24-
- uses: actions/cache@v2
24+
- uses: actions/cache@v3
2525
id: restore-build
2626
with:
2727
path: stacker

go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
77
github.com/anuvu/squashfs v0.0.0-20220228153512-67c8ca12cbf4
88
github.com/apex/log v1.9.0
9-
github.com/cheggaaa/pb/v3 v3.0.8
9+
github.com/cheggaaa/pb/v3 v3.1.0
1010
github.com/containers/image/v5 v5.16.1
1111
github.com/dustin/go-humanize v1.0.0
1212
github.com/freddierice/go-losetup v0.0.0-20220331141030-7ad00c49b973
@@ -22,14 +22,14 @@ require (
2222
github.com/opencontainers/umoci v0.4.8-0.20220412065115-12453f247749
2323
github.com/pkg/errors v0.9.1
2424
github.com/pkg/xattr v0.4.9
25-
github.com/smartystreets/goconvey v1.6.4
26-
github.com/stretchr/testify v1.7.1
25+
github.com/smartystreets/goconvey v1.7.2
26+
github.com/stretchr/testify v1.8.1
2727
github.com/twmb/algoimpl v0.0.0-20170717182524-076353e90b94
2828
github.com/udhos/equalfile v0.3.0
29-
github.com/urfave/cli v1.22.5
30-
github.com/vbatts/go-mtree v0.5.0
31-
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f
32-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
29+
github.com/urfave/cli v1.22.10
30+
github.com/vbatts/go-mtree v0.5.2
31+
golang.org/x/sys v0.2.0
32+
golang.org/x/term v0.2.0
3333
gopkg.in/yaml.v2 v2.4.0
3434
)
3535

@@ -48,7 +48,7 @@ require (
4848
github.com/containers/libtrust v0.0.0-20200511145503-9c3a6c22cd9a // indirect
4949
github.com/containers/ocicrypt v1.1.2 // indirect
5050
github.com/containers/storage v1.37.0 // indirect
51-
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
51+
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
5252
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
5353
github.com/davecgh/go-spew v1.1.1 // indirect
5454
github.com/docker/distribution v2.8.0+incompatible // indirect
@@ -75,7 +75,7 @@ require (
7575
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
7676
github.com/klauspost/compress v1.14.4 // indirect
7777
github.com/klauspost/cpuid/v2 v2.0.4 // indirect
78-
github.com/mattn/go-colorable v0.1.11 // indirect
78+
github.com/mattn/go-colorable v0.1.12 // indirect
7979
github.com/mattn/go-isatty v0.0.14 // indirect
8080
github.com/mattn/go-runewidth v0.0.13 // indirect
8181
github.com/mattn/go-shellwords v1.0.12 // indirect
@@ -98,8 +98,8 @@ require (
9898
github.com/rivo/uniseg v0.2.0 // indirect
9999
github.com/rootless-containers/proto/go-proto v0.0.0-20210921234734-69430b6543fb // indirect
100100
github.com/russross/blackfriday/v2 v2.1.0 // indirect
101-
github.com/sirupsen/logrus v1.8.1 // indirect
102-
github.com/smartystreets/assertions v1.0.1 // indirect
101+
github.com/sirupsen/logrus v1.9.0 // indirect
102+
github.com/smartystreets/assertions v1.2.0 // indirect
103103
github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 // indirect
104104
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
105105
github.com/tchap/go-patricia v2.3.0+incompatible // indirect
@@ -109,16 +109,16 @@ require (
109109
go.etcd.io/bbolt v1.3.6 // indirect
110110
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 // indirect
111111
go.opencensus.io v0.23.0 // indirect
112-
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect
113-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
114-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
115-
golang.org/x/text v0.3.7 // indirect
112+
golang.org/x/crypto v0.3.0 // indirect
113+
golang.org/x/net v0.2.0 // indirect
114+
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
115+
golang.org/x/text v0.4.0 // indirect
116116
google.golang.org/genproto v0.0.0-20220303160752-862486edd9cc // indirect
117117
google.golang.org/grpc v1.44.0 // indirect
118118
google.golang.org/protobuf v1.28.0 // indirect
119119
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5 // indirect
120120
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
121-
gopkg.in/yaml.v3 v3.0.0 // indirect
121+
gopkg.in/yaml.v3 v3.0.1 // indirect
122122
)
123123

124124
replace github.com/containers/image/v5 => github.com/anuvu/image/v5 v5.0.0-20211117201351-4c24aa76235c

0 commit comments

Comments
 (0)