Skip to content

Commit 8951196

Browse files
build(deps): Bump github.com/dvsekhvalnov/jose2go from 1.6.0 to 1.7.0 in /test/e2e (#2845)
Bumps [github.com/dvsekhvalnov/jose2go](https://github.com/dvsekhvalnov/jose2go) from 1.6.0 to 1.7.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/0a0673dd7f2820a446de5b04b9094b2291d77d5d"><code>0a0673d</code></a> Merge pull request <a href="https://github.com/dvsekhvalnov/jose2go/issues/34">#34</a> from dvsekhvalnov/issue-33-deflate-limit</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/c3fff7c58065c848ba063d5cee07bd2c5908a14f"><code>c3fff7c</code></a> docs</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/e51b47f33c704a31f1f7ad75120759e01de5fb4c"><code>e51b47f</code></a> docs</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/c7dde528a01b38c96652b99a5d2ed93d8932b39e"><code>c7dde52</code></a> fixing workflow</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/a194baa4bb649000dd2266218155727c27297341"><code>a194baa</code></a> added go versions and OSs to matrix</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/f31cfc6b273af924c90bd5305b92ff5f9af10763"><code>f31cfc6</code></a> fixing yaml</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/1a4ba55b88b757ed4533884a014531d3f421462b"><code>1a4ba55</code></a> added matrix to workflow</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/d2baff2f0b24baab11bd34b8268c9aabfeb31914"><code>d2baff2</code></a> go workflow</li> <li><a href="https://github.com/dvsekhvalnov/jose2go/commit/b14c81a7a3261666e4ec76f04438f79d70211272"><code>b14c81a</code></a> added limitation for deflate decompression stream</li> <li>See full diff in <a href="https://github.com/dvsekhvalnov/jose2go/compare/v1.6.0...v1.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/dvsekhvalnov/jose2go&package-manager=go_modules&previous-version=1.6.0&new-version=1.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/evstack/ev-node/network/alerts). </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Julien Robert <[email protected]>
1 parent 095684c commit 8951196

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/dependabot-auto-fix.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020

2121
- uses: actions/setup-go@v6
2222
with:
23-
go-version: "1.22"
2423
check-latest: true
2524

2625
- name: Install make (if missing)

test/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ require (
7878
github.com/docker/go-connections v0.5.0 // indirect
7979
github.com/docker/go-units v0.5.0 // indirect
8080
github.com/dustin/go-humanize v1.0.1 // indirect
81-
github.com/dvsekhvalnov/jose2go v1.6.0 // indirect
81+
github.com/dvsekhvalnov/jose2go v1.7.0 // indirect
8282
github.com/emicklei/dot v1.6.2 // indirect
8383
github.com/ethereum/c-kzg-4844/v2 v2.1.3 // indirect
8484
github.com/ethereum/go-verkle v0.2.2 // indirect

test/e2e/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4
182182
github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
183183
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
184184
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
185-
github.com/dvsekhvalnov/jose2go v1.6.0 h1:Y9gnSnP4qEI0+/uQkHvFXeD2PLPJeXEL+ySMEA2EjTY=
186-
github.com/dvsekhvalnov/jose2go v1.6.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU=
185+
github.com/dvsekhvalnov/jose2go v1.7.0 h1:bnQc8+GMnidJZA8zc6lLEAb4xNrIqHwO+9TzqvtQZPo=
186+
github.com/dvsekhvalnov/jose2go v1.7.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU=
187187
github.com/emicklei/dot v1.6.2 h1:08GN+DD79cy/tzN6uLCT84+2Wk9u+wvqP+Hkx/dIR8A=
188188
github.com/emicklei/dot v1.6.2/go.mod h1:DeV7GvQtIw4h2u73RKBkkFdvVAz0D9fzeJrgPW6gy/s=
189189
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=

0 commit comments

Comments
 (0)