Skip to content

Commit

Permalink
Bump golang.org/x/net from 0.21.0 to 0.23.0 (#273)
Browse files Browse the repository at this point in the history
* Bump golang.org/x/net from 0.21.0 to 0.23.0

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.21.0 to 0.23.0.
- [Commits](golang/net@v0.21.0...v0.23.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update image scanner

* Update actions.yaml

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: shaynafinocchiaro <[email protected]>
  • Loading branch information
dependabot[bot] and shaynafinocchiaro authored Apr 22, 2024
1 parent ff25097 commit 8a5ba06
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 27 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,37 +114,37 @@ jobs:
docker.io/library/sidecar-proxy:${{ env.podman_tag }}
docker load -i /tmp/images.tar
- name: Scan Proxy Server
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: proxy-server:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: proxy-server:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan Role Service
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: role-service:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: role-service:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan Tenant Service
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: tenant-service:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: tenant-service:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan SideCar Proxy
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: sidecar-proxy:${{ env.sidecar_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: sidecar-proxy:${{ env.sidecar_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan Storage Service
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: storage-service:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: storage-service:${{ env.podman_tag }}
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ require (
go.uber.org/multierr v1.10.0 // indirect
go.uber.org/zap v1.25.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
Expand Down
3 changes: 2 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,9 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
Expand Down

0 comments on commit 8a5ba06

Please sign in to comment.