Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to [email protected] in CI #468

Merged
merged 2 commits into from
Mar 15, 2024
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/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
- uses: actions/checkout@v4

- name: Bandit security check for code
uses: akaihola/bandit-report-artifacts@use-config
uses: ioggstream/bandit-report-artifacts@v1.7.4
with:
project_path: .
config_file: ./.bandit.code.yaml

- name: Bandit security check for tests
uses: akaihola/bandit-report-artifacts@use-config
uses: ioggstream/bandit-report-artifacts@v1.7.4
with:
project_path: ./src/darker/tests
config_file: ./.bandit.tests.yaml

- name: Bandit security check for GitHub Action `main.py` tests
uses: akaihola/bandit-report-artifacts@use-config
uses: ioggstream/bandit-report-artifacts@v1.7.4
with:
project_path: ./action/tests
config_file: ./.bandit.tests.yaml
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ These features will be included in the next release:

Added
-----
- Mark the Darker package as annotated with type hints.
- Update to ``ioggstream/[email protected]`` in CI.

Fixed
-----
Expand All @@ -27,7 +29,6 @@ Added
- Update 3rd party GitHub actions to avoid using deprecated NodeJS versions.
- CI build now shows a diff between output of ``darker --help`` and its output as
included ``README.rst`` in case the two differ.
- Mark the Darker package as annotated with type hints.

Removed
-------
Expand Down
Loading