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
5 changes: 3 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ jobs:
- name: Run Checks
run: tox -e test,slow-tests
- name: Upload .coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: .coverage
include-hidden-files: true
coverage:
name: Coverage
needs: tests
Expand All @@ -74,7 +75,7 @@ jobs:
- name: Install Dependencies
run: python3 -m pip install tox
- name: Download .coverage
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage
- name: Run Checks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rock-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ jobs:
run: syft $(realpath ./cos-alerter_*.rock) -o spdx-json=cos-alerter.sbom.json

- name: Upload SBOM
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cos-alerter-sbom
path: "cos-alerter.sbom.json"
- name: Upload locally built ROCK artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cos-alerter-rock
path: "cos-alerter_*.rock"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## CI - updates

- Fixed deprecated job versions in the CI

## [0.9.0] - 2024-05-30

- Added PagerDuty native support (#76).
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deps =
black
ruff
commands =
ruff --fix {[vars]all_path}
ruff check --fix {[vars]all_path}
black {[vars]all_path}

[testenv:lint]
Expand All @@ -26,7 +26,7 @@ deps =
codespell
commands =
codespell --skip .git --skip .tox --skip build --skip venv
ruff {[vars]all_path}
ruff check {[vars]all_path}
black --check --diff {[vars]all_path}

[testenv:static]
Expand Down
Loading