Skip to content

Commit 29b6771

Browse files
build(deps): bump the dependencies group across 1 directory with 7 updates (eclipse-tractusx#339)
1 parent a5efbec commit 29b6771

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: yarn test:ci
6666

6767
- name: Set up Docker Buildx
68-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
68+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
6969

7070
- name: Login to DockerHub
7171
if: github.event_name != 'pull_request'
@@ -84,7 +84,7 @@ jobs:
8484
type=raw,value=${{ github.sha }}
8585
8686
- name: Build and push Docker image
87-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
87+
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
8888
with:
8989
context: .
9090
file: .conf/Dockerfile.prebuilt

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
# Initializes the CodeQL tools for scanning.
7777
- name: Initialize CodeQL
78-
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v2.227
78+
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v2.227
7979
with:
8080
languages: ${{ matrix.language }}
8181
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -89,7 +89,7 @@ jobs:
8989
# Automates dependency installation for Python, Ruby, and JavaScript, optimizing the CodeQL analysis setup.
9090
# If this step fails, then you should remove it and run the build manually (see below)
9191
- name: Autobuild
92-
uses: github/codeql-action/autobuild@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v2.227
92+
uses: github/codeql-action/autobuild@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v2.227
9393

9494
# ℹ️ Command-line programs to run using the OS shell.
9595
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -102,6 +102,6 @@ jobs:
102102
# ./location_of_script_within_repo/buildscript.sh
103103

104104
- name: Perform CodeQL Analysis
105-
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v2.227
105+
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v2.227
106106
with:
107107
category: "/language:${{matrix.language}}"

.github/workflows/dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343

4444
- name: Set up JDK 17
45-
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
45+
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
4646
with:
4747
distribution: 'temurin'
4848
java-version: '17'
@@ -75,7 +75,7 @@ jobs:
7575
if: steps.dependencies-changed.outputs.changed == 'true'
7676

7777
- name: Upload DEPENDENCIES file
78-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
78+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
7979
with:
8080
path: DEPENDENCIES
8181
if: steps.dependencies-changed.outputs.changed == 'true'

.github/workflows/kics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
# Upload findings to GitHub Advanced Security Dashboard
6868
- name: Upload SARIF file for GitHub Advanced Security Dashboard
6969
if: always()
70-
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
70+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
7171
with:
7272
sarif_file: kicsResults/results.sarif
7373

.github/workflows/pullRequest-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838

39-
- uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
39+
- uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1
4040
# When the previous steps fail, the workflow would stop. By adding this
4141
# condition you can continue the execution with the populated error message.
4242
if: always() && (steps.lint_pr_title.outputs.error_message != null)
@@ -55,7 +55,7 @@ jobs:
5555
5656
# Delete a previous comment when the issue has been resolved
5757
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
58-
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
58+
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1
5959
with:
6060
header: pr-title-lint-error
6161
delete: true

.github/workflows/release-release_candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: yarn test:ci
8585

8686
- name: Set up Docker Buildx
87-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
87+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
8888

8989
- name: Login to DockerHub
9090
if: github.event_name != 'pull_request'
@@ -108,7 +108,7 @@ jobs:
108108
type=semver,pattern=v{{major}}.{{minor}}
109109
110110
- name: Build and push Docker image
111-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
111+
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
112112
with:
113113
context: .
114114
file: .conf/Dockerfile.prebuilt

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
run: yarn test:ci
8686

8787
- name: Set up Docker Buildx
88-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
88+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
8989

9090
- name: Login to DockerHub
9191
if: github.event_name != 'pull_request'
@@ -109,7 +109,7 @@ jobs:
109109
type=semver,pattern=v{{major}}.{{minor}}
110110
111111
- name: Build and push Docker image
112-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
112+
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
113113
with:
114114
context: .
115115
file: .conf/Dockerfile.prebuilt

.github/workflows/release_candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: yarn test:ci
6666

6767
- name: Set up Docker Buildx
68-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
68+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
6969

7070
- name: Login to DockerHub
7171
if: github.event_name != 'pull_request'
@@ -84,7 +84,7 @@ jobs:
8484
type=raw,value=${{ github.sha }}
8585
8686
- name: Build and push Docker image
87-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
87+
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
8888
with:
8989
context: .
9090
file: .conf/Dockerfile.prebuilt

.github/workflows/trivy-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
limit-severities-for-sarif: true
6767

6868
- name: Upload Trivy scan results to GitHub Security tab
69-
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
69+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
7070
if: always()
7171
with:
7272
sarif_file: "trivy-results1.sarif"
@@ -103,6 +103,6 @@ jobs:
103103

104104
- name: Upload Trivy scan results to GitHub Security tab
105105
if: always()
106-
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
106+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
107107
with:
108108
sarif_file: "trivy-results2.sarif"

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
limit-severities-for-sarif: true
6767

6868
- name: Upload Trivy scan results to GitHub Security tab
69-
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
69+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
7070
if: always()
7171
with:
7272
sarif_file: "trivy-results1.sarif"
@@ -103,6 +103,6 @@ jobs:
103103

104104
- name: Upload Trivy scan results to GitHub Security tab
105105
if: always()
106-
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
106+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
107107
with:
108108
sarif_file: "trivy-results2.sarif"

0 commit comments

Comments
 (0)