Skip to content

Commit 39e3244

Browse files
authored
Refactoring/752 update upload and download artifact (#753)
* Update to upload-artifact v7 * Update to download-artifact v8 * Use nox -s workfow:generate --all to update
1 parent 4214a7f commit 39e3244

7 files changed

Lines changed: 16 additions & 12 deletions

File tree

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Upload Artifacts
101101
id: upload-artifacts
102-
uses: actions/upload-artifact@v6
102+
uses: actions/upload-artifact@v7
103103
with:
104104
name: lint-python${{ matrix.python-versions }}
105105
path: |
@@ -161,7 +161,7 @@ jobs:
161161

162162
- name: Upload Artifacts
163163
id: upload-artifacts
164-
uses: actions/upload-artifact@v6
164+
uses: actions/upload-artifact@v7
165165
with:
166166
name: security-python${{ matrix.python-versions }}
167167
path: .security.json
@@ -260,7 +260,7 @@ jobs:
260260

261261
- name: Upload Artifacts
262262
id: upload-artifacts
263-
uses: actions/upload-artifact@v6
263+
uses: actions/upload-artifact@v7
264264
with:
265265
name: coverage-python${{ matrix.python-versions }}-fast
266266
path: .coverage

.github/workflows/report.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/slow-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: poetry run -- nox -s test:integration -- --coverage
4040
- name: Upload Artifacts
4141
id: upload-artifacts
42-
uses: actions/upload-artifact@v6
42+
uses: actions/upload-artifact@v7
4343
with:
4444
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
4545
path: .coverage

doc/changes/unreleased.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@
55
## Security Issues
66

77
* #748: Updated dependency to `black`
8+
9+
## Refactoring
10+
11+
* #752: Updated upload-artifact from v6 to v7 and download-artifact from v7 to v8

exasol/toolbox/templates/github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Upload Artifacts
101101
id: upload-artifacts
102-
uses: actions/upload-artifact@v6
102+
uses: actions/upload-artifact@v7
103103
with:
104104
name: lint-python${{ matrix.python-versions }}
105105
path: |
@@ -161,7 +161,7 @@ jobs:
161161

162162
- name: Upload Artifacts
163163
id: upload-artifacts
164-
uses: actions/upload-artifact@v6
164+
uses: actions/upload-artifact@v7
165165
with:
166166
name: security-python${{ matrix.python-versions }}
167167
path: .security.json
@@ -238,7 +238,7 @@ jobs:
238238

239239
- name: Upload Artifacts
240240
id: upload-artifacts
241-
uses: actions/upload-artifact@v6
241+
uses: actions/upload-artifact@v7
242242
with:
243243
name: coverage-python${{ matrix.python-versions }}-fast
244244
path: .coverage

exasol/toolbox/templates/github/workflows/report.yml

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

2828
- name: Download Artifacts
2929
id: download-artifacts
30-
uses: actions/download-artifact@v7
30+
uses: actions/download-artifact@v8
3131
with:
3232
path: ./artifacts
3333

@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Upload Artifacts
5353
id: upload-artifacts
54-
uses: actions/upload-artifact@v6
54+
uses: actions/upload-artifact@v7
5555
with:
5656
name: metrics.json
5757
path: metrics.json

exasol/toolbox/templates/github/workflows/slow-checks.yml

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

4141
- name: Upload Artifacts
4242
id: upload-artifacts
43-
uses: actions/upload-artifact@v6
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
4646
path: .coverage

0 commit comments

Comments
 (0)