-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from ppfeufer/development
[RELEASE] v1.17.1
- Loading branch information
Showing
18 changed files
with
4,731 additions
and
1,913 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,42 +33,9 @@ jobs: | |
- name: Run Pre Commit Checks | ||
uses: pre-commit/[email protected] | ||
|
||
# Codacy Security Scan | ||
codacy-security-scan: | ||
needs: [pre-commit] | ||
name: Codacy Security Scan | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checkout the repository to the GitHub Actions runner | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis | ||
- name: Run Codacy Analysis CLI | ||
uses: codacy/codacy-analysis-cli-action@master | ||
with: | ||
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository | ||
# You can also omit the token and run the tools that support default configurations | ||
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | ||
verbose: true | ||
output: results.sarif | ||
format: sarif | ||
# Adjust severity of non-security issues | ||
gh-code-scanning-compat: true | ||
# Force 0 exit code to allow SARIF file generation | ||
# This will hand over control about PR rejection to the GitHub side | ||
max-allowed-issues: 2147483647 | ||
|
||
# Upload the SARIF file generated in the previous step | ||
- name: Upload SARIF results file | ||
uses: github/codeql-action/upload-sarif@main | ||
with: | ||
sarif_file: results.sarif | ||
|
||
# Run Test Coverage | ||
test-coverage-aa-stable: | ||
needs: [ codacy-security-scan ] | ||
needs: [pre-commit] | ||
name: AA Latest (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }} with ${{ matrix.database }}) | ||
runs-on: ubuntu-latest | ||
|
||
|
@@ -265,11 +232,10 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
# Minimum supported Python version by AllianceAuth | ||
- name: Set up Python 3.8 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
python-version: '3.8' # Minimum supported Python version by AllianceAuth | ||
|
||
- name: Install Tools | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
""" | ||
A couple of variable to use throughout the app | ||
A couple of variables to use throughout the app | ||
""" | ||
|
||
__version__ = "1.17.0" | ||
__version__ = "1.17.1" | ||
__title__ = "Ship Replacement" |
Binary file not shown.
Oops, something went wrong.