Skip to content

Commit adda85a

Browse files
authored
Merge pull request #207 from github/dependabot/github_actions/dependencies-92b3e5af0c
chore(deps): bump the dependencies group with 2 updates
2 parents 118d181 + af77d47 commit adda85a

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
@@ -437,6 +437,7 @@ disable=bad-inline-option,
437437
too-many-arguments,
438438
too-many-branches,
439439
too-many-locals,
440+
too-many-positional-arguments,
440441
too-many-statements,
441442
useless-suppression,
442443
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@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
45+
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
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
@@ -26,7 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip
2727
pip install -r requirements.txt -r requirements-test.txt
2828
- name: Lint Code Base
29-
uses: super-linter/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8
29+
uses: super-linter/super-linter@e1cb86b6e8d119f789513668b4b30bf17fe1efe4
3030
env:
3131
DEFAULT_BRANCH: main
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)