Skip to content
Open
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/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ jobs:
runs-on: ubuntu-latest
name: PR - Hadolint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
# Ignores do not work: https://github.com/reviewdog/action-hadolint/issues/35 is resolved
- uses: reviewdog/action-hadolint@v1

shellcheck-pr:
runs-on: ubuntu-latest
name: PR - Shellcheck
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ludeeus/action-shellcheck@master

actionlint-pr:
runs-on: ubuntu-latest
name: PR - Actionlint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
Expand All @@ -38,7 +38,7 @@ jobs:
name: PR - Reusable workflow linting
steps:
# We probably should target this on only workflow changes but the complexity of doing that is a lot more than just letting the grep run.
- uses: actions/checkout@v4
- uses: actions/checkout@v6
# Recursive grep or any workflow using a local reusable workflow but not ending in @main
- run: |
if [[ $(grep -R -E 'uses:[ ]*calyptia/enterprise/.github/workflows/.*@[^main].*$' .github/workflows/*.y*ml| wc -l) -gt 0 ]]; then
Expand All @@ -53,15 +53,15 @@ jobs:
runs-on: ubuntu-latest
name: PR - Markdownlint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run markdownlint
uses: actionshub/[email protected]

golint-pr:
runs-on: ubuntu-latest
name: PR - GO lint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install cmetrics
env:
Expand Down
Loading