Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lint-python${{ matrix.python-versions }}
path: |
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: security-python${{ matrix.python-versions }}
path: .security.json
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-python${{ matrix.python-versions }}-fast
path: .coverage
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/report.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slow-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: poetry run -- nox -s test:integration -- --coverage
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
path: .coverage
Expand Down
4 changes: 4 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
## Security Issues

* #748: Updated dependency to `black`

## Refactoring

* #752: Updated upload-artifact from v6 to v7 and download-artifact from v7 to v8
6 changes: 3 additions & 3 deletions exasol/toolbox/templates/github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lint-python${{ matrix.python-versions }}
path: |
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: security-python${{ matrix.python-versions }}
path: .security.json
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-python${{ matrix.python-versions }}-fast
path: .coverage
Expand Down
4 changes: 2 additions & 2 deletions exasol/toolbox/templates/github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Download Artifacts
id: download-artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: ./artifacts

Expand All @@ -51,7 +51,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: metrics.json
path: metrics.json
Expand Down
2 changes: 1 addition & 1 deletion exasol/toolbox/templates/github/workflows/slow-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
path: .coverage
Expand Down