Skip to content

Commit 711b58b

Browse files
ci(deps): bump the all group across 1 directory with 10 updates (#7427)
* ci(deps): bump the all group across 1 directory with 10 updates --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rui Araújo Gomes <rui.araujo@checkmarx.com>
1 parent 89d7c8d commit 711b58b

14 files changed

+32
-30
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ updates:
1111
all:
1212
patterns:
1313
- "*"
14+
ignore:
15+
- dependency-name: golangci/golangci-lint-action
1416
- package-ecosystem: "gomod"
1517
directory: "/"
1618
schedule:

.github/workflows/go-ci-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
curl -L \
3434
https://img.shields.io/badge/Go%20Coverage-${{ steps.testcov.outputs.coverage }}%25-${{ steps.testcov.outputs.color }}.svg > coverage.svg
3535
cat coverage.svg
36-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
36+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
3737
with:
3838
name: ${{ runner.os }}-badge-latest
3939
path: coverage.svg
40-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
40+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4141
with:
4242
name: ${{ runner.os }}-coverage-latest
4343
path: coverage.html

.github/workflows/go-ci-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: buildx
2323
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2424
- name: Cache Docker layers
25-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
25+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2626
with:
2727
path: /tmp/.buildx-cache
2828
key: ${{ runner.os }}-buildx-${{ github.ref }}
@@ -59,7 +59,7 @@ jobs:
5959
-p "/path" \
6060
-o "/path/"
6161
- name: Archive test logs
62-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
62+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
6363
if: always()
6464
with:
6565
name: integration-logs-${{ github.event.pull_request.head.sha }}
@@ -68,7 +68,7 @@ jobs:
6868
run: |
6969
cat ${PWD}/assets/queries/results.json
7070
- name: Archive test results
71-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
71+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7272
with:
7373
name: integration-results-${{ github.event.pull_request.head.sha }}
7474
path: assets/queries/results.json

.github/workflows/go-ci-metrics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
curl -L \
2727
https://img.shields.io/badge/Queries-${{ steps.metrics.outputs.total_queries }}-blue.svg > queries.svg
2828
cat queries.svg
29-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
29+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
3030
with:
3131
name: ${{ runner.os }}-queries-badge-latest
3232
path: queries.svg

.github/workflows/go-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
shell: bash
5757
run: echo "GO_BUILD=$(go env GOCACHE)" >>$GITHUB_OUTPUT
5858
- name: Cache dependencies
59-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
59+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6060
with:
6161
path: ${{ steps.go-cache-paths.outputs.GO_BUILD }}
6262
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -86,7 +86,7 @@ jobs:
8686
go test -mod=vendor -tags dev -v -timeout 2100s $(go list -tags dev ./... | grep -v e2e) -count=1 -coverprofile=cover.out | tee unit-test.log
8787
- name: Archive test logs
8888
if: always()
89-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
89+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
9090
with:
9191
name: unit-test-${{ runner.os }}-${{ github.event.pull_request.head.sha }}.log
9292
path: unit-test.log
@@ -99,13 +99,13 @@ jobs:
9999
- name: Checkout Source
100100
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
101101
- name: Run Gosec Security Scanner
102-
uses: securego/gosec@136f6c00402b11775d4f4a45d5a21e2f6dd99db2 # v2.22.2
102+
uses: securego/gosec@955a68d0d19f4afb7503068f95059f7d0c529017 # v2.22.3
103103
with:
104104
args: "-no-fail -fmt sarif -out results.sarif ./..."
105105
- name: Show results
106106
run: |
107107
cat results.sarif
108108
- name: Upload SARIF file
109-
uses: github/codeql-action/upload-sarif@608ccd6cd915d2c43d3059c3da518f36f07a56b0
109+
uses: github/codeql-action/upload-sarif@362ef4ce205154842cd1d34794abd82bb8f12cd5
110110
with:
111111
sarif_file: results.sarif

.github/workflows/go-e2e-debian.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: buildx
4545
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
4646
- name: Cache Docker layers
47-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
47+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4848
with:
4949
path: /tmp/.buildx-cache
5050
key: ${{ runner.os }}-buildx-${{ github.ref }}
@@ -100,7 +100,7 @@ jobs:
100100
DOCKER_NAME=$(echo docker/Dockerfile.debian | sed 's/\//-/')
101101
- name: Archive test report
102102
if: always()
103-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
103+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
104104
with:
105105
name: e2e-tests-report-dockerfile-$DOCKER_NAME
106106
path: e2e-report.html

.github/workflows/go-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
id: buildx
4646
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
4747
- name: Cache Docker layers
48-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
48+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4949
with:
5050
path: /tmp/.buildx-cache
5151
key: ${{ runner.os }}-buildx-${{ github.ref }}
@@ -99,7 +99,7 @@ jobs:
9999
echo "DOCKER_NAME=$DOCKER_NAME" >> $GITHUB_ENV
100100
- name: Archive test report
101101
if: always()
102-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
102+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
103103
with:
104104
name: e2e-tests-report-${{ env.DOCKER_NAME }}
105105
path: e2e-report.html

.github/workflows/go-test-race.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "::set-output name=go-build::$(go env GOCACHE)"
2828
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
2929
- name: Cache dependencies
30-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
30+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
3131
with:
3232
path: ${{ steps.go-cache-paths.outputs.go-build }}
3333
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -45,7 +45,7 @@ jobs:
4545
exit $result_code
4646
- name: Archive test logs
4747
if: always()
48-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
48+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4949
with:
5050
name: unit-test-${{ runner.os }}-${{ github.event.pull_request.head.sha }}.log
5151
path: unit-test.log

.github/workflows/kics-gh-action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1313
- name: Run KICS Scan
14-
uses: checkmarx/kics-github-action@3246fb456a46d1ea8848ae18793c036718b19fe0 # v2.1.5
14+
uses: checkmarx/kics-github-action@09100f0152c975eb238c67030f9fd1418acb3666 # v2.1.6
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
path: "./Dockerfile"
@@ -21,7 +21,7 @@ jobs:
2121
output_formats: json,html
2222
type: dockerfile
2323
exclude_queries: 67fd0c4a-68cf-46d7-8c41-bc9fba7e40ae # Ignore Last User Is 'root'
24-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
24+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
2525
with:
2626
name: results
2727
path: ./results

.github/workflows/release-dkr-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Docker Buildx
4444
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
4545
- name: Login to DockerHub
46-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
46+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
4747
with:
4848
username: ${{ secrets.DOCKER_USERNAME }}
4949
password: ${{ secrets.DOCKER_PASSWORD }}

0 commit comments

Comments
 (0)