Skip to content

Commit 7466b0e

Browse files
committed
Update actions/upload-artifact to v5
1 parent 393619b commit 7466b0e

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
run: poetry run -- nox -s lint:code
8787

8888
- name: Upload Artifacts
89-
uses: actions/upload-artifact@v4.6.2
89+
uses: actions/upload-artifact@v5
9090
with:
9191
name: lint-python${{ matrix.python-version }}
9292
path: |
@@ -139,7 +139,7 @@ jobs:
139139
run: poetry run -- nox -s lint:security
140140

141141
- name: Upload Artifacts
142-
uses: actions/upload-artifact@v4.6.2
142+
uses: actions/upload-artifact@v5
143143
with:
144144
name: security-python${{ matrix.python-version }}
145145
path: .security.json
@@ -202,7 +202,7 @@ jobs:
202202
run: poetry run -- nox -s test:unit -- --coverage
203203

204204
- name: Upload Artifacts
205-
uses: actions/upload-artifact@v4.6.2
205+
uses: actions/upload-artifact@v5
206206
with:
207207
name: coverage-python${{ matrix.python-version }}-fast
208208
path: .coverage

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: poetry run -- nox -s project:report -- --format json | tee metrics.json
4242

4343
- name: Upload Artifacts
44-
uses: actions/upload-artifact@v4.6.2
44+
uses: actions/upload-artifact@v5
4545
with:
4646
name: metrics.json
4747
path: metrics.json

.github/workflows/slow-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: poetry run -- nox -s test:integration -- --coverage --db-version ${{ matrix.exasol-version }}
3636

3737
- name: Upload Artifacts
38-
uses: actions/upload-artifact@v4.6.2
38+
uses: actions/upload-artifact@v5
3939
with:
4040
name: coverage-python${{ matrix.python-version }}-slow
4141
path: .coverage

doc/changes/unreleased.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* #578: Updated GitHub actions which now use node 24:
1010
* actions/checkout to [v5](https://github.com/actions/checkout/releases/tag/v5.0.0)
1111
* actions/download-artifact to [v6](https://github.com/actions/download-artifact/releases/tag/v6.0.0)
12+
* actions/upload-artifact to [v5](https://github.com/actions/upload-artifact/releases/tag/v5.0.0)
1213

1314
## Security
1415

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
run: poetry run -- nox -s lint:code
8787

8888
- name: Upload Artifacts
89-
uses: actions/upload-artifact@v4.6.2
89+
uses: actions/upload-artifact@v5
9090
with:
9191
name: lint-python${{ matrix.python-version }}
9292
path: |
@@ -139,7 +139,7 @@ jobs:
139139
run: poetry run -- nox -s lint:security
140140

141141
- name: Upload Artifacts
142-
uses: actions/upload-artifact@v4.6.2
142+
uses: actions/upload-artifact@v5
143143
with:
144144
name: security-python${{ matrix.python-version }}
145145
path: .security.json
@@ -199,7 +199,7 @@ jobs:
199199
run: poetry run -- nox -s test:unit -- --coverage
200200

201201
- name: Upload Artifacts
202-
uses: actions/upload-artifact@v4.6.2
202+
uses: actions/upload-artifact@v5
203203
with:
204204
name: coverage-python${{ matrix.python-version }}-fast
205205
path: .coverage

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: poetry run -- nox -s project:report -- --format json | tee metrics.json
4242

4343
- name: Upload Artifacts
44-
uses: actions/upload-artifact@v4.6.2
44+
uses: actions/upload-artifact@v5
4545
with:
4646
name: metrics.json
4747
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
@@ -35,7 +35,7 @@ jobs:
3535
run: poetry run -- nox -s test:integration -- --coverage --db-version ${{ matrix.exasol-version }}
3636

3737
- name: Upload Artifacts
38-
uses: actions/upload-artifact@v4.6.2
38+
uses: actions/upload-artifact@v5
3939
with:
4040
name: coverage-python${{ matrix.python-version }}-slow
4141
path: .coverage

0 commit comments

Comments
 (0)