Skip to content

Commit

Permalink
chore(deps): bump the gha group with 4 updates
Browse files Browse the repository at this point in the history
Bumps the gha group with 4 updates: [actions/setup-go](https://github.com/actions/setup-go), [aquasecurity/trivy-action](https://github.com/aquasecurity/trivy-action), [actions/cache](https://github.com/actions/cache) and [docker/login-action](https://github.com/docker/login-action).


Updates `actions/setup-go` from 4 to 5
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v4...v5)

Updates `aquasecurity/trivy-action` from 0.16.0 to 0.17.0
- [Release notes](https://github.com/aquasecurity/trivy-action/releases)
- [Commits](aquasecurity/trivy-action@0.16.0...0.17.0)

Updates `actions/cache` from 3 to 4
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

Updates `docker/login-action` from 2 to 3
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@v2...v3)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gha
- dependency-name: aquasecurity/trivy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gha
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gha
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Feb 14, 2024
1 parent df4ee07 commit df8f5af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
go_version_file: go.mod

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
push: false

- name: Run Trivy vulnerability scanner on the dev image
uses: aquasecurity/trivy-action@0.16.0
uses: aquasecurity/trivy-action@0.17.0
with:
image-ref: 'controlplane/simulator:dev'
format: 'table'
Expand All @@ -88,7 +88,7 @@ jobs:
push: false

- name: Run Trivy vulnerability scanner on simulator image
uses: aquasecurity/trivy-action@0.16.0
uses: aquasecurity/trivy-action@0.17.0
with:
image-ref: controlplane/simulator:${{ github.sha }}
format: 'table'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cache container layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}${{ matrix.containers.suffix }}-buildx-${{ github.sha }}
Expand All @@ -33,7 +33,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -49,7 +49,7 @@ jobs:
push: false

- name: Run Trivy vulnerability scanner on the dev image
uses: aquasecurity/trivy-action@0.16.0
uses: aquasecurity/trivy-action@0.17.0
with:
image-ref: 'controlplane/simulator:dev'
format: 'table'
Expand All @@ -68,7 +68,7 @@ jobs:
push: false

- name: Run Trivy vulnerability scanner on simulator image
uses: aquasecurity/trivy-action@0.16.0
uses: aquasecurity/trivy-action@0.17.0
with:
image-ref: controlplane/simulator:${{ github.ref_name }}
format: 'table'
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
fetch-depth: 0

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod

Expand Down

0 comments on commit df8f5af

Please sign in to comment.