Skip to content

Commit 33d05ab

Browse files
Bump the ci-dependencies group with 4 updates
Bumps the ci-dependencies group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/download-artifact` from 5 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v7) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 866e9b9 commit 33d05ab

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/build.yaml

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

2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
# The version script relies on history. Fetch 100 commits to be safe.
3131
fetch-depth: 100
@@ -113,7 +113,7 @@ jobs:
113113
# Make the image available as an artifact so other jobs will be able to
114114
# download it.
115115
- name: Upload image archive as an artifact
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v6
117117
with:
118118
name: ${{ env.artifact }}
119119
path: ${{ env.artifact }}.tar

.github/workflows/deploy.yaml

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

2424
steps:
2525
- name: Download image artifact
26-
uses: actions/download-artifact@v5
26+
uses: actions/download-artifact@v7
2727
with:
2828
name: ${{ inputs.artifact }}
2929

@@ -44,7 +44,7 @@ jobs:
4444
password: ${{ secrets.GITHUB_TOKEN }}
4545

4646
- name: Checkout code
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
# The version script relies on history. Fetch 100 commits to be safe.
5050
fetch-depth: 100

.github/workflows/lint.yaml

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

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

1616
- name: Set up Python
1717
id: python
@@ -25,7 +25,7 @@ jobs:
2525
run: pip install -U -r requirements/lint.pip
2626

2727
- name: Pre-commit environment cache
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: ${{ env.PRE_COMMIT_HOME }}
3131
key: "precommit-0-${{ runner.os }}-${{ env.PRE_COMMIT_HOME }}-\

.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@v5
13+
uses: actions/checkout@v6
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: 7 additions & 7 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@v5
17+
uses: actions/download-artifact@v7
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@v5
26+
uses: actions/checkout@v6
2727

2828
# Memory limit tests would fail if this isn't disabled.
2929
- name: Disable swap memory
@@ -43,7 +43,7 @@ jobs:
4343
4444
# Upload it so the coverage from all matrix jobs can be combined later.
4545
- name: Upload coverage data
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v6
4747
with:
4848
name: coverage
4949
path: .coverage
@@ -57,7 +57,7 @@ jobs:
5757

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

6262
- name: Set up Python
6363
uses: actions/setup-python@v6
@@ -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@v5
73+
uses: actions/download-artifact@v7
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@v5
98+
uses: actions/download-artifact@v7
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@v5
107+
uses: actions/checkout@v6
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)