Skip to content

Commit d7347f4

Browse files
chore(deps)(deps): bump the all-dependencies group with 5 updates (#22)
Bumps the all-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@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 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...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: all-dependencies - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 77c07d8 commit d7347f4

2 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/cd.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
commit_sha: ${{ steps.commit_version.outputs.commit_sha }}
3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0 # Need full history for git bundle
3838

3939
- name: Set up Python
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: '3.11'
4343

@@ -135,7 +135,7 @@ jobs:
135135
git bundle create repo.bundle --all
136136
137137
- name: Upload bundle as artifact
138-
uses: actions/upload-artifact@v4
138+
uses: actions/upload-artifact@v6
139139
with:
140140
name: git-repo-bundle
141141
path: repo.bundle
@@ -166,7 +166,7 @@ jobs:
166166
runs-on: ${{ matrix.os }}
167167
steps:
168168
- name: Download git bundle
169-
uses: actions/download-artifact@v4
169+
uses: actions/download-artifact@v7
170170
with:
171171
name: git-repo-bundle
172172

@@ -187,7 +187,7 @@ jobs:
187187
ls -la src/treemapper/ || echo "ERROR: src/treemapper not found!"
188188
189189
- name: Set up Python
190-
uses: actions/setup-python@v5
190+
uses: actions/setup-python@v6
191191
with:
192192
python-version: ${{ matrix.python-version }}
193193
cache: 'pip'
@@ -251,7 +251,7 @@ jobs:
251251
fi
252252
253253
- name: Upload artifact
254-
uses: actions/upload-artifact@v4
254+
uses: actions/upload-artifact@v6
255255
with:
256256
name: ${{ matrix.asset_name }}-binary
257257
path: ./repo/dist/treemapper-*
@@ -269,7 +269,7 @@ jobs:
269269
id-token: write
270270
steps:
271271
- name: Download git bundle
272-
uses: actions/download-artifact@v4
272+
uses: actions/download-artifact@v7
273273
with:
274274
name: git-repo-bundle
275275

@@ -290,7 +290,7 @@ jobs:
290290
ls -la src/treemapper/ || echo "ERROR: src/treemapper not found!"
291291
292292
- name: Set up Python
293-
uses: actions/setup-python@v5
293+
uses: actions/setup-python@v6
294294
with:
295295
python-version: '3.11'
296296

@@ -336,7 +336,7 @@ jobs:
336336
contents: write
337337
steps:
338338
- name: Download git bundle
339-
uses: actions/download-artifact@v4
339+
uses: actions/download-artifact@v7
340340
with:
341341
name: git-repo-bundle
342342

@@ -385,7 +385,7 @@ jobs:
385385
echo "Successfully pushed version commit and tag"
386386
387387
- name: Download all build artifacts
388-
uses: actions/download-artifact@v4
388+
uses: actions/download-artifact@v7
389389
with:
390390
path: ./artifacts
391391

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
permissions:
1919
contents: read
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.12'
2727

2828
- name: Cache pre-commit
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ~/.cache/pre-commit
3232
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -49,10 +49,10 @@ jobs:
4949
contents: read
5050
steps:
5151
- name: Checkout Code
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v6
5353

5454
- name: Set up Python 3.10
55-
uses: actions/setup-python@v5
55+
uses: actions/setup-python@v6
5656
with:
5757
python-version: '3.10'
5858
cache: 'pip'
@@ -89,10 +89,10 @@ jobs:
8989

9090
steps:
9191
- name: Checkout Code
92-
uses: actions/checkout@v4
92+
uses: actions/checkout@v6
9393

9494
- name: Set up Python ${{ matrix.python-version }}
95-
uses: actions/setup-python@v5
95+
uses: actions/setup-python@v6
9696
with:
9797
python-version: ${{ matrix.python-version }}
9898
cache: 'pip'
@@ -124,7 +124,7 @@ jobs:
124124
verbose: true
125125

126126
- name: Upload coverage for SonarCloud
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v6
128128
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
129129
with:
130130
name: coverage-report
@@ -145,12 +145,12 @@ jobs:
145145
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
146146

147147
steps:
148-
- uses: actions/checkout@v4
148+
- uses: actions/checkout@v6
149149
with:
150150
fetch-depth: 0
151151

152152
- name: Set up Python
153-
uses: actions/setup-python@v5
153+
uses: actions/setup-python@v6
154154
with:
155155
python-version: '3.12'
156156

@@ -176,10 +176,10 @@ jobs:
176176
contents: read
177177

178178
steps:
179-
- uses: actions/checkout@v4
179+
- uses: actions/checkout@v6
180180

181181
- name: Set up Python
182-
uses: actions/setup-python@v5
182+
uses: actions/setup-python@v6
183183
with:
184184
python-version: '3.12'
185185

@@ -214,10 +214,10 @@ jobs:
214214
contents: read
215215

216216
steps:
217-
- uses: actions/checkout@v4
217+
- uses: actions/checkout@v6
218218

219219
- name: Set up Python
220-
uses: actions/setup-python@v5
220+
uses: actions/setup-python@v6
221221
with:
222222
python-version: '3.12'
223223

0 commit comments

Comments
 (0)