Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #273

Merged
merged 1 commit into from
Sep 5, 2023
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
@@ -1,11 +1,11 @@
---
name: Check links in README.md

on:

Check warning on line 4 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

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

Check warning on line 4 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

4:1 [truthy] truthy value should be one of [false, true]
push:
branches: [ '*' ]

Check failure on line 6 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

6:16 [brackets] too many spaces inside brackets

Check failure on line 6 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

6:20 [brackets] too many spaces inside brackets

Check failure on line 6 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

6:16 [brackets] too many spaces inside brackets

Check failure on line 6 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

6:20 [brackets] too many spaces inside brackets
pull_request:
branches: [ '*' ]

Check failure on line 8 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

8:16 [brackets] too many spaces inside brackets

Check failure on line 8 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

8:20 [brackets] too many spaces inside brackets

Check failure on line 8 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

8:16 [brackets] too many spaces inside brackets

Check failure on line 8 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

8:20 [brackets] too many spaces inside brackets

jobs:
build:
Expand All @@ -13,7 +13,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

Check failure on line 16 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

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

Check failure on line 16 in .github/workflows/awesomebot.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:5 [indentation] wrong indentation: expected 6 but found 4
- uses: docker://dkhamsing/awesome_bot:latest
with:
args: /github/workspace/Readme.md --allow 500,501,502,503,504,509,521 --allow-dupe --request-delay 1 --allow-redirect --allow-ssl --white-list https://ipfs.io,slideshare,https://img.shields.io
2 changes: 1 addition & 1 deletion .github/workflows/mega-linter.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/mega-linter.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/mega-linter.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@v3
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files
# within `mega-linter`
Expand Down
Loading