diff --git a/.github/linters/.python-lint b/.github/linters/.python-lint index 6de8dd2..5fad82e 100644 --- a/.github/linters/.python-lint +++ b/.github/linters/.python-lint @@ -437,6 +437,7 @@ disable=bad-inline-option, too-many-arguments, too-many-branches, too-many-locals, + too-many-positional-arguments, too-many-statements, useless-suppression, use-symbolic-message-instead, diff --git a/.github/workflows/major-version-updater.yml b/.github/workflows/major-version-updater.yml index 066d389..fb262a4 100644 --- a/.github/workflows/major-version-updater.yml +++ b/.github/workflows/major-version-updater.yml @@ -25,9 +25,7 @@ jobs: tag=${GITHUB_REF/refs\/tags\//}; version=${tag#v} ; major=${version%%.*} ; - echo "tag=${tag}" >> "$GITHUB_OUTPUT" ; - echo "version=${version}" >> "$GITHUB_OUTPUT" ; - echo "major=${major}" >> "$GITHUB_OUTPUT" ; + { echo "tag=${tag}" ; echo "version=${version}" ; echo "major=${major}" ; } >> "$GITHUB_OUTPUT" ; - name: force update major tag run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e681c61..8b5d169 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: id: get_tag_name run: | short_tag=$(echo ${{ steps.release-drafter.outputs.tag_name }} | cut -d. -f1) - echo "SHORT_TAG=$short_tag" >> $GITHUB_OUTPUT + echo "SHORT_TAG=$short_tag" >> "$GITHUB_OUTPUT" create_action_images: needs: create_release runs-on: ubuntu-latest diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index c6f2e01..9a47aa5 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -42,6 +42,6 @@ jobs: path: results.sarif retention-days: 5 - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4 + uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5 with: sarif_file: results.sarif diff --git a/.github/workflows/super-linter.yaml b/.github/workflows/super-linter.yaml index b41f192..b6e1773 100644 --- a/.github/workflows/super-linter.yaml +++ b/.github/workflows/super-linter.yaml @@ -26,7 +26,7 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt -r requirements-test.txt - name: Lint Code Base - uses: super-linter/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8 + uses: super-linter/super-linter@e1cb86b6e8d119f789513668b4b30bf17fe1efe4 env: DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}