Skip to content

Commit cc35889

Browse files
Bump the actions-dependencies group across 1 directory with 4 updates
Bumps the actions-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [docker/login-action](https://github.com/docker/login-action), [github/codeql-action](https://github.com/github/codeql-action) and [actions/setup-go](https://github.com/actions/setup-go). Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) Updates `docker/login-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@5e57cd1...c94ce9f) Updates `github/codeql-action` from 4.31.9 to 4.32.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@5d4e8d1...b20883b) Updates `actions/setup-go` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4dc6199...7a3fe6c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-dependencies - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies - dependency-name: github/codeql-action dependency-version: 4.32.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies - dependency-name: actions/setup-go dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a2f598d commit cc35889

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/build-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
runs-on: ubuntu-24.04
2121
steps:
22-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
22+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2323
name: Checkout
2424
with:
2525
fetch-depth: 0
@@ -47,7 +47,7 @@ jobs:
4747
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
4848
runs-on: ubuntu-24.04
4949
steps:
50-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
50+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5151
name: Checkout
5252
with:
5353
fetch-depth: 0
@@ -61,7 +61,7 @@ jobs:
6161
run: make load-multiarch-build-image
6262

6363
- name: Login to Quay.io
64-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
64+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
6565
with:
6666
registry: quay.io
6767
username: ${{secrets.QUAY_REGISTRY_USER}}

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: "Checkout code"
31-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
31+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3232
with:
3333
persist-credentials: false
3434

@@ -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@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
67+
uses: github/codeql-action/upload-sarif@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v3.29.5
6868
with:
6969
sarif_file: results.sarif

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
image: quay.io/cortexproject/build-image:master-8b48921f71
2121
steps:
2222
- name: Checkout Repo
23-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424
- name: Setup Git safe.directory
2525
run: |
2626
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -60,7 +60,7 @@ jobs:
6060
image: quay.io/cortexproject/build-image:master-8b48921f71
6161
steps:
6262
- name: Checkout Repo
63-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
63+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6464
- name: Setup Git safe.directory
6565
run: |
6666
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -88,7 +88,7 @@ jobs:
8888
image: quay.io/cortexproject/build-image:master-8b48921f71
8989
steps:
9090
- name: Checkout Repo
91-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
91+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9292
- name: Setup Git safe.directory
9393
run: |
9494
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -110,19 +110,19 @@ jobs:
110110
security-events: write
111111
steps:
112112
- name: Checkout repository
113-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
113+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
114114

115115
# Initializes the CodeQL tools for scanning.
116116
- name: Initialize CodeQL
117-
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
117+
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v3.29.5
118118
with:
119119
languages: go
120120

121121
- name: Autobuild
122-
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
122+
uses: github/codeql-action/autobuild@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v3.29.5
123123

124124
- name: Perform CodeQL Analysis
125-
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
125+
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v3.29.5
126126

127127

128128
build:
@@ -131,7 +131,7 @@ jobs:
131131
image: quay.io/cortexproject/build-image:master-8b48921f71
132132
steps:
133133
- name: Checkout Repo
134-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
134+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
135135
- name: Setup Git safe.directory
136136
run: |
137137
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -227,11 +227,11 @@ jobs:
227227
tags: integration_querier
228228
steps:
229229
- name: Upgrade golang
230-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
230+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
231231
with:
232232
go-version: 1.25.5
233233
- name: Checkout Repo
234-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
234+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
235235
- name: Install Docker Client
236236
run: sudo ./.github/workflows/scripts/install-docker.sh
237237
- name: Sym Link Expected Path to Workspace
@@ -296,7 +296,7 @@ jobs:
296296
arch: arm64
297297
steps:
298298
- name: Checkout Repo
299-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
299+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
300300
- name: Install Docker Client
301301
run: sudo ./.github/workflows/scripts/install-docker.sh
302302
- name: Download Docker Images Artifact
@@ -322,7 +322,7 @@ jobs:
322322
image: quay.io/cortexproject/build-image:master-8b48921f71
323323
steps:
324324
- name: Checkout Repo
325-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
325+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
326326
with:
327327
# web-deploy script expects repo to be cloned with ssh for some commands to work
328328
ssh-key: ${{ secrets.WEBSITE_DEPLOY_SSH_PRIVATE_KEY }}
@@ -364,7 +364,7 @@ jobs:
364364
image: quay.io/cortexproject/build-image:master-8b48921f71
365365
steps:
366366
- name: Checkout Repo
367-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
367+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
368368
- name: Setup Git safe.directory
369369
run: |
370370
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."

0 commit comments

Comments
 (0)