Skip to content

Commit c23e8cd

Browse files
Bump the ci-dependencies group across 1 directory with 2 updates (#240)
Bumps the ci-dependencies group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c29eb01 commit c23e8cd

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
# The version script relies on history. Fetch 100 commits to be safe.
2626
fetch-depth: 100

.github/workflows/deploy.yaml

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

1919
steps:
2020
- name: Download image artifact
21-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@v5
2222
with:
2323
name: ${{ inputs.artifact }}
2424

@@ -37,7 +37,7 @@ jobs:
3737
password: ${{ secrets.GITHUB_TOKEN }}
3838

3939
- name: Checkout code
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
with:
4242
# The version script relies on history. Fetch 100 commits to be safe.
4343
fetch-depth: 100

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Set up Python
1717
id: python

.github/workflows/sentry_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
# The version script relies on history. Fetch 100 commits to be safe.
1616
fetch-depth: 100

.github/workflows/test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Download image artifact
17-
uses: actions/download-artifact@v4
17+
uses: actions/download-artifact@v5
1818
with:
1919
name: ${{ inputs.artifact }}
2020

@@ -23,7 +23,7 @@ jobs:
2323

2424
# Needed for the Docker Compose file.
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
# Memory limit tests would fail if this isn't disabled.
2929
- name: Disable swap memory
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: Checkout code
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161

6262
- name: Set up Python
6363
uses: actions/setup-python@v5
@@ -70,7 +70,7 @@ jobs:
7070
run: pip install -U -r requirements/coverage.pip
7171

7272
- name: Download coverage data
73-
uses: actions/download-artifact@v4
73+
uses: actions/download-artifact@v5
7474
with:
7575
pattern: coverage
7676
merge-multiple: true
@@ -95,7 +95,7 @@ jobs:
9595
needs: test
9696
steps:
9797
- name: Download image artifact
98-
uses: actions/download-artifact@v4
98+
uses: actions/download-artifact@v5
9999
with:
100100
name: ${{ inputs.artifact }}
101101

@@ -104,7 +104,7 @@ jobs:
104104

105105
# Needed for the Docker Compose file.
106106
- name: Checkout code
107-
uses: actions/checkout@v4
107+
uses: actions/checkout@v5
108108

109109
# Install eval deps the same way as init container from deployment.yaml
110110
# This is to ensure that deployment won't fail at that step

0 commit comments

Comments
 (0)