Skip to content

Commit 3faa7a2

Browse files
chore(deps): bump the dependencies group with 2 updates (#272)
* chore(deps): bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [github/codeql-action](https://github.com/github/codeql-action) and [super-linter/super-linter](https://github.com/super-linter/super-linter). Updates `github/codeql-action` from 3.27.1 to 3.27.4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@4f3212b...ea9e4e3) Updates `super-linter/super-linter` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@b92721f...e1cb86b) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: super-linter/super-linter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * fix: linting errors after super-linter upgrade - [x] group commands instead of instead of individual redirects - [x] double quote variable to prevent globbing and word splitting - [x] disable too-many-positional-arguments pylint linting Signed-off-by: jmeridth <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: jmeridth <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jmeridth <[email protected]>
1 parent a6b481f commit 3faa7a2

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/linters/.python-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,7 @@ disable=bad-inline-option,
440440
too-many-branches,
441441
too-many-locals,
442442
too-many-nested-blocks,
443+
too-many-positional-arguments,
443444
too-many-statements,
444445
useless-suppression,
445446
use-symbolic-message-instead,

.github/workflows/major-version-updater.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ jobs:
2525
tag=${GITHUB_REF/refs\/tags\//};
2626
version=${tag#v} ;
2727
major=${version%%.*} ;
28-
echo "tag=${tag}" >> "$GITHUB_OUTPUT" ;
29-
echo "version=${version}" >> "$GITHUB_OUTPUT" ;
30-
echo "major=${major}" >> "$GITHUB_OUTPUT" ;
28+
{ echo "tag=${tag}"; echo "version=${version}"; echo "major=${major}"; } >> "$GITHUB_OUTPUT"
3129
3230
- name: force update major tag
3331
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
id: get_tag_name
4343
run: |
4444
short_tag=$(echo ${{ steps.release-drafter.outputs.tag_name }} | cut -d. -f1)
45-
echo "SHORT_TAG=$short_tag" >> $GITHUB_OUTPUT
45+
echo "SHORT_TAG=$short_tag" >> "$GITHUB_OUTPUT"
4646
create_action_images:
4747
needs: create_release
4848
runs-on: ubuntu-latest

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@4f3212b61783c3c68e8309a0f18a699764811cda # v3.27.1
45+
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
4646
with:
4747
sarif_file: results.sarif

.github/workflows/super-linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
pip install -r requirements.txt -r requirements-test.txt
3232
- name: Lint Code Base
33-
uses: super-linter/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0
33+
uses: super-linter/super-linter@e1cb86b6e8d119f789513668b4b30bf17fe1efe4 # v7.2.0
3434
env:
3535
DEFAULT_BRANCH: main
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)