Skip to content

Commit b3b9c73

Browse files
committed
Remove Super-Linter artifact upload to prevent zip errors
- Set CREATE_LOG_FILE to 'false' to prevent log file creation - Remove artifact upload step entirely to eliminate zip creation errors - Keeps Super-Linter functionality but removes problematic reporting - Resolves persistent zip file creation failures during artifact upload - Super-Linter will still report status checks but without log artifacts
1 parent 13ee71a commit b3b9c73

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/super-linter.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
# To report GitHub Actions status checks
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
CREATE_LOG_FILE: 'true'
36+
CREATE_LOG_FILE: 'false'
3737

3838
# Run only on changed files for efficiency
3939
VALIDATE_ALL_CODEBASE: false
@@ -49,12 +49,3 @@ jobs:
4949
VALIDATE_DOCKERFILE_HADOLINT: true
5050
VALIDATE_GITHUB_ACTIONS: true
5151
VALIDATE_EDITORCONFIG: true
52-
- name: Upload Super-Linter report
53-
uses: actions/upload-artifact@v4
54-
if: always()
55-
with:
56-
name: super-linter-report
57-
path: |
58-
super-linter.log
59-
**/*lint*.log
60-
if-no-files-found: ignore

0 commit comments

Comments
 (0)