Skip to content

Commit f657d87

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), [actions/download-artifact](https://github.com/actions/download-artifact), [docker/login-action](https://github.com/docker/login-action) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...08c6903) Updates `actions/download-artifact` from 4.3.0 to 5.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...634f93c) Updates `docker/login-action` from 3.4.0 to 3.5.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@74a5d14...184bdaa) Updates `github/codeql-action` from 3.29.7 to 3.29.8 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@51f7732...76621b6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies - dependency-name: actions/download-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies - dependency-name: docker/login-action dependency-version: 3.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-dependencies - dependency-name: github/codeql-action dependency-version: 3.29.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent cadf00f commit f657d87

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

.github/workflows/build-image.yml

Lines changed: 4 additions & 4 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323
name: Checkout
2424
with:
2525
fetch-depth: 0
@@ -47,21 +47,21 @@ 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
50+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5151
name: Checkout
5252
with:
5353
fetch-depth: 0
5454

5555
- name: Download Docker Images Artifacts
56-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
56+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
5757
with:
5858
name: build-image
5959

6060
- name: Load image
6161
run: make load-multiarch-build-image
6262

6363
- name: Login to Quay.io
64-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
64+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
67+
uses: github/codeql-action/upload-sarif@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.5
6868
with:
6969
sarif_file: results.sarif

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
image: quay.io/cortexproject/build-image:master-7ce1d1b12
2121
steps:
2222
- name: Checkout Repo
23-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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."
@@ -49,7 +49,7 @@ jobs:
4949
image: quay.io/cortexproject/build-image:master-7ce1d1b12
5050
steps:
5151
- name: Checkout Repo
52-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
52+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5353
- name: Setup Git safe.directory
5454
run: |
5555
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -67,7 +67,7 @@ jobs:
6767
image: quay.io/cortexproject/build-image:master-7ce1d1b12
6868
steps:
6969
- name: Checkout Repo
70-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
70+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7171
- name: Setup Git safe.directory
7272
run: |
7373
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -89,19 +89,19 @@ jobs:
8989
security-events: write
9090
steps:
9191
- name: Checkout repository
92-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
92+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9393

9494
# Initializes the CodeQL tools for scanning.
9595
- name: Initialize CodeQL
96-
uses: github/codeql-action/init@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
96+
uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.5
9797
with:
9898
languages: go
9999

100100
- name: Autobuild
101-
uses: github/codeql-action/autobuild@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
101+
uses: github/codeql-action/autobuild@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.5
102102

103103
- name: Perform CodeQL Analysis
104-
uses: github/codeql-action/analyze@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
104+
uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.5
105105

106106

107107
build:
@@ -110,7 +110,7 @@ jobs:
110110
image: quay.io/cortexproject/build-image:master-7ce1d1b12
111111
steps:
112112
- name: Checkout Repo
113-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
113+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
114114
- name: Setup Git safe.directory
115115
run: |
116116
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -169,15 +169,15 @@ jobs:
169169
with:
170170
go-version: 1.24.0
171171
- name: Checkout Repo
172-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
172+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
173173
- name: Install Docker Client
174174
run: sudo ./.github/workflows/scripts/install-docker.sh
175175
- name: Sym Link Expected Path to Workspace
176176
run: |
177177
sudo mkdir -p /go/src/github.com/cortexproject/cortex
178178
sudo ln -s $GITHUB_WORKSPACE/* /go/src/github.com/cortexproject/cortex
179179
- name: Download Docker Images Artifacts
180-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
180+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
181181
with:
182182
name: Docker Images
183183
- name: Extract Docker Images Archive
@@ -233,11 +233,11 @@ jobs:
233233
runs-on: ubuntu-24.04
234234
steps:
235235
- name: Checkout Repo
236-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
236+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
240+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
241241
with:
242242
name: Docker Images
243243
- name: Extract Docker Images Archive
@@ -257,7 +257,7 @@ jobs:
257257
image: quay.io/cortexproject/build-image:master-7ce1d1b12
258258
steps:
259259
- name: Checkout Repo
260-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
260+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
261261
with:
262262
# web-deploy script expects repo to be cloned with ssh for some commands to work
263263
ssh-key: ${{ secrets.WEBSITE_DEPLOY_SSH_PRIVATE_KEY }}
@@ -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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
274+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
275275
with:
276276
name: website public
277277
path: website/public
@@ -299,7 +299,7 @@ jobs:
299299
image: quay.io/cortexproject/build-image:master-7ce1d1b12
300300
steps:
301301
- name: Checkout Repo
302-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
302+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
303303
- name: Setup Git safe.directory
304304
run: |
305305
echo "this step is needed because when running in container, actions/checkout does not set safe.directory effectively."
@@ -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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
315+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
316316
with:
317317
name: Docker Images
318318
- name: Extract Docker Images Archive

0 commit comments

Comments
 (0)