Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/awesomebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: docker://dkhamsing/awesome_bot:latest
with:
args: /github/workspace/README.md --allow-dupe --allow-redirect --request-delay 1 --white-list https://github,https://img.shields.io
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

Check warning on line 12 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

12:1 [document-start] missing document start "---"

Check warning on line 12 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

12:1 [document-start] missing document start "---"

on:

Check warning on line 14 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

14:1 [truthy] truthy value should be one of [false, true]

Check warning on line 14 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

14:1 [truthy] truthy value should be one of [false, true]
push:
branches: [ main ]

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:21 [brackets] too many spaces inside brackets

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:16 [brackets] too many spaces inside brackets

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:21 [brackets] too many spaces inside brackets

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:16 [brackets] too many spaces inside brackets
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:21 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:16 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:21 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:16 [brackets] too many spaces inside brackets
schedule:
- cron: '40 15 * * 1'

Expand All @@ -32,14 +32,14 @@
strategy:
fail-fast: false
matrix:
language: [ 'python' ]

Check failure on line 35 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

35:29 [brackets] too many spaces inside brackets

Check failure on line 35 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

35:20 [brackets] too many spaces inside brackets

Check failure on line 35 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

35:29 [brackets] too many spaces inside brackets

Check failure on line 35 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

35:20 [brackets] too many spaces inside brackets
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository

Check failure on line 41 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

41:5 [indentation] wrong indentation: expected 6 but found 4

Check failure on line 41 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

41:5 [indentation] wrong indentation: expected 6 but found 4
uses: actions/checkout@v2
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -63,7 +63,7 @@
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |

Check warning on line 66 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

66:6 [comments] missing starting space in comment

Check warning on line 66 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

66:6 [comments] missing starting space in comment
# make bootstrap
# make release

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/megalinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#############################
# Start the job on all push #
#############################
on:

Check warning on line 17 in .github/workflows/megalinter.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

17:1 [truthy] truthy value should be one of [false, true]

Check warning on line 17 in .github/workflows/megalinter.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

17:1 [truthy] truthy value should be one of [false, true]
push:
branches-ignore: [main]
# Remove the line above to run when pushing to main
Expand All @@ -39,7 +39,7 @@
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
Loading