Skip to content

Commit fbd8ee0

Browse files
chore(deps): update all dependencies
1 parent bcbeda7 commit fbd8ee0

File tree

6 files changed

+109
-48
lines changed

6 files changed

+109
-48
lines changed

.github/workflows/codeql-analysis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030

3131
steps:
3232
- name: Harden Runner
33-
uses: step-security/harden-runner@6b3083af2869dc3314a0257a42f4af696cc79ba3 # v2.3.1
33+
uses: step-security/harden-runner@55d479fb1c5bcad5a4f9099a5d9f37c8857b2845 # v2.4.1
3434
with:
3535
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3636

3737
- name: Checkout repository
38-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
38+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2.3.2
42+
uses: github/codeql-action/init@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2.3.2
56+
uses: github/codeql-action/autobuild@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -66,4 +66,4 @@ jobs:
6666
# ./location_of_script_within_repo/buildscript.sh
6767

6868
- name: Perform CodeQL Analysis
69-
uses: github/codeql-action/analyze@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2.3.2
69+
uses: github/codeql-action/analyze@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
go: ['1.20']
2020
steps:
2121
- name: Harden Runner
22-
uses: step-security/harden-runner@6b3083af2869dc3314a0257a42f4af696cc79ba3 # v2.3.1
22+
uses: step-security/harden-runner@55d479fb1c5bcad5a4f9099a5d9f37c8857b2845 # v2.4.1
2323
with:
2424
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2525

26-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
26+
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2727
- name: Setup Go ${{ matrix.go }}
28-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
28+
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
2929
with:
3030
go-version: ${{ matrix.go }}
3131
- name: Lint Go

go.mod

+13-13
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ require (
1313
github.com/cayleygraph/quad v1.2.4
1414
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
1515
github.com/dennwc/graphql v0.4.19-0.20180603144102-12cfed44bc5d
16-
github.com/dop251/goja v0.0.0-20230427124612-428fc442ff5f
16+
github.com/dop251/goja v0.0.0-20230621100801-7749907a8a20
1717
github.com/fsouza/go-dockerclient v1.9.7
1818
github.com/go-sql-driver/mysql v1.7.1
1919
github.com/gobuffalo/packr/v2 v2.8.3
2020
github.com/golang/glog v1.1.1
2121
github.com/golang/protobuf v1.5.3
22-
github.com/hidal-go/hidalgo v0.2.1-0.20220428091800-b74c839b2fb0
22+
github.com/hidal-go/hidalgo v0.2.1-0.20230526132157-e834af4ef991
2323
github.com/jackc/pgx v3.6.2+incompatible
2424
github.com/julienschmidt/httprouter v1.3.0
2525
github.com/lib/pq v1.10.9
@@ -29,8 +29,8 @@ require (
2929
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
3030
github.com/piprate/json-gold v0.5.0
3131
github.com/spf13/cobra v1.7.0
32-
github.com/spf13/viper v1.15.0
33-
github.com/stretchr/testify v1.8.3
32+
github.com/spf13/viper v1.16.0
33+
github.com/stretchr/testify v1.8.4
3434
github.com/syndtr/goleveldb v1.0.0
3535
github.com/tylertreat/BoomFilters v0.0.0-20210315201527-1a82519a3e43
3636
github.com/vmihailenco/msgpack/v5 v5.3.5
@@ -86,7 +86,7 @@ require (
8686
github.com/josharian/intern v1.0.0 // indirect
8787
github.com/karrick/godirwalk v1.16.1 // indirect
8888
github.com/klauspost/compress v1.15.1 // indirect
89-
github.com/kr/pretty v0.3.0 // indirect
89+
github.com/kr/pretty v0.3.1 // indirect
9090
github.com/kr/text v0.2.0 // indirect
9191
github.com/magiconair/properties v1.8.7 // indirect
9292
github.com/mailru/easyjson v0.7.7 // indirect
@@ -105,16 +105,16 @@ require (
105105
github.com/ory/dockertest v3.3.5+incompatible // indirect
106106
github.com/otiai10/copy v1.11.0 // indirect
107107
github.com/pborman/uuid v1.2.1 // indirect
108-
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
108+
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
109109
github.com/pkg/errors v0.9.1 // indirect
110110
github.com/pmezard/go-difflib v1.0.0 // indirect
111111
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
112112
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
113-
github.com/rogpeppe/go-internal v1.8.1 // indirect
113+
github.com/rogpeppe/go-internal v1.9.0 // indirect
114114
github.com/shopspring/decimal v1.3.1 // indirect
115115
github.com/sirupsen/logrus v1.8.1 // indirect
116-
github.com/spf13/afero v1.9.3 // indirect
117-
github.com/spf13/cast v1.5.0 // indirect
116+
github.com/spf13/afero v1.9.5 // indirect
117+
github.com/spf13/cast v1.5.1 // indirect
118118
github.com/spf13/jwalterweatherman v1.1.0 // indirect
119119
github.com/spf13/pflag v1.0.5 // indirect
120120
github.com/subosito/gotenv v1.4.2 // indirect
@@ -125,13 +125,13 @@ require (
125125
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
126126
go.etcd.io/bbolt v1.3.6 // indirect
127127
go.mongodb.org/mongo-driver v1.8.4 // indirect
128-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
128+
golang.org/x/crypto v0.9.0 // indirect
129129
golang.org/x/exp v0.0.0-20220321173239-a90fa8a75705 // indirect
130130
golang.org/x/mod v0.8.0 // indirect
131-
golang.org/x/net v0.9.0 // indirect
131+
golang.org/x/net v0.10.0 // indirect
132132
golang.org/x/sync v0.1.0 // indirect
133-
golang.org/x/sys v0.7.0 // indirect
134-
golang.org/x/term v0.7.0 // indirect
133+
golang.org/x/sys v0.8.0 // indirect
134+
golang.org/x/term v0.8.0 // indirect
135135
golang.org/x/text v0.9.0 // indirect
136136
golang.org/x/tools v0.6.0 // indirect
137137
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect

0 commit comments

Comments
 (0)