Skip to content

Commit

Permalink
prevent megalinter commits
Browse files Browse the repository at this point in the history
- also applied modified sources from megalinter
- bumped up dependecies to get rid of warnings

Signed-off-by: Ivan Kirchev <[email protected]>
  • Loading branch information
int0x27 authored and SebastianSchildt committed Mar 1, 2023
1 parent 2694b94 commit f48572d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:

env: # Comment env block if you do not want to apply fixes
# Apply linter fixes configuration
APPLY_FIXES: all # When active, APPLY_FIXES must also be defined as environment variable (in github/workflows/mega-linter.yml or other CI tool)
APPLY_FIXES_EVENT: all # Decide which event triggers application of fixes in a commit or a PR (pull_request, push, all)
# APPLY_FIXES: all # When active, APPLY_FIXES must also be defined as environment variable (in github/workflows/mega-linter.yml or other CI tool)
APPLY_FIXES_EVENT: none # Decide which event triggers application of fixes in a commit or a PR (pull_request, push, all)
APPLY_FIXES_MODE: commit # If APPLY_FIXES is used, defines if the fixes are directly committed (commit) or posted in a PR (pull_request)
DEFAULT_BRANCH: main
#TODO: Enable the following DOCKERFILE_DOCKERFILELINT, DOCKERFILE_HADOLINT, ACTION_ACTIONLINT
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
uses: actions/checkout@v3
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
#run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Download all artifacts
uses: actions/download-artifact@v3
Expand All @@ -63,7 +64,7 @@ jobs:
steps:
- id: repository-name-adjusted
name: Prepare repository name in lower case for docker upload. This supports repository names in mixed case
uses: ASzc/change-string-case-action@v2
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository }}

Expand Down Expand Up @@ -102,7 +103,7 @@ jobs:
steps:
- id: repository-name-adjusted
name: Prepare repository name in lower case for docker upload. This supports repository names in mixed case
uses: ASzc/change-string-case-action@v2
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository }}

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/scripts/install-ci-tooling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ sudo apt-get -qqy install \
cppcheck \
valgrind


# Install PIP
[ -z "$(which pip3)" ] && sudo apt-get -qqy install --fix-missing python3-pip

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/seat_service_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ jobs:

- id: repository-name-adjusted
name: Make repository name in lower case for docker upload.
uses: ASzc/change-string-case-action@v2
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2

- name: "Build seat service image"
id: image_build
Expand Down

0 comments on commit f48572d

Please sign in to comment.