Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/BlackLint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
name: runner / black
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Check files using the black formatter
uses: rickstaa/action-black@v1

Check failure on line 10 in .github/workflows/BlackLint.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=moverperfect_Az-DevOps-Dependency-Check&issues=AZ7cdADtXlCZMYGYl0rH&open=AZ7cdADtXlCZMYGYl0rH&pullRequest=32
id: action_black
with:
black_args: "."
- name: Create Pull Request
if: steps.action_black.outputs.is_formatted == 'true'
uses: peter-evans/create-pull-request@v6

Check failure on line 16 in .github/workflows/BlackLint.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=moverperfect_Az-DevOps-Dependency-Check&issues=AZ7cdADuXlCZMYGYl0rI&open=AZ7cdADuXlCZMYGYl0rI&pullRequest=32
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "Format Python code with psf/black push"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down