Skip to content

Commit ee387c5

Browse files
Bump the actions-dependencies group across 1 directory with 3 updates (#6734)
Bumps the actions-dependencies group with 3 updates in the / directory: [actions/download-artifact](https://github.com/actions/download-artifact), [github/codeql-action](https://github.com/github/codeql-action) and [actions/setup-go](https://github.com/actions/setup-go). Updates `actions/download-artifact` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@95815c3...d3f86a1) Updates `github/codeql-action` from 3.28.15 to 3.28.17 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@45775bd...60168ef) Updates `actions/setup-go` from 5.4.0 to 5.5.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@0aaccfd...d35c59a) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies - dependency-name: github/codeql-action dependency-version: 3.28.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-dependencies - dependency-name: actions/setup-go dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 77f0c30 commit ee387c5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fetch-depth: 0
5454

5555
- name: Download Docker Images Artifacts
56-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
56+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
5757
with:
5858
name: build-image
5959

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ jobs:
6464
# Upload the results to GitHub's code scanning dashboard (optional).
6565
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
6666
- name: "Upload to code-scanning"
67-
uses: github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
67+
uses: github/codeql-action/upload-sarif@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
6868
with:
6969
sarif_file: results.sarif

.github/workflows/test-build-deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ jobs:
9393

9494
# Initializes the CodeQL tools for scanning.
9595
- name: Initialize CodeQL
96-
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
96+
uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
9797
with:
9898
languages: go
9999

100100
- name: Autobuild
101-
uses: github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
101+
uses: github/codeql-action/autobuild@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
102102

103103
- name: Perform CodeQL Analysis
104-
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
104+
uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
105105

106106

107107
build:
@@ -164,7 +164,7 @@ jobs:
164164
- integration_query_fuzz
165165
steps:
166166
- name: Upgrade golang
167-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
167+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
168168
with:
169169
go-version: 1.23.2
170170
- name: Checkout Repo
@@ -176,7 +176,7 @@ jobs:
176176
sudo mkdir -p /go/src/github.com/cortexproject/cortex
177177
sudo ln -s $GITHUB_WORKSPACE/* /go/src/github.com/cortexproject/cortex
178178
- name: Download Docker Images Artifacts
179-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
179+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
180180
with:
181181
name: Docker Images
182182
- name: Extract Docker Images Archive
@@ -237,7 +237,7 @@ jobs:
237237
- name: Install Docker Client
238238
run: sudo ./.github/workflows/scripts/install-docker.sh
239239
- name: Download Docker Images Artifact
240-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
240+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
241241
with:
242242
name: Docker Images
243243
- name: Extract Docker Images Archive
@@ -271,7 +271,7 @@ jobs:
271271
mkdir -p /go/src/github.com/cortexproject/cortex
272272
ln -s $GITHUB_WORKSPACE/* /go/src/github.com/cortexproject/cortex
273273
- name: Download Website Artifact
274-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
274+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
275275
with:
276276
name: website public
277277
path: website/public
@@ -312,7 +312,7 @@ jobs:
312312
mkdir -p /go/src/github.com/cortexproject/cortex
313313
ln -s $GITHUB_WORKSPACE/* /go/src/github.com/cortexproject/cortex
314314
- name: Download Docker Images Artifact
315-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
315+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
316316
with:
317317
name: Docker Images
318318
- name: Extract Docker Images Archive

0 commit comments

Comments
 (0)