Skip to content

Commit

Permalink
Merge pull request #6 from kairos-io/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
Update actions/checkout action to v4
  • Loading branch information
mauromorales authored May 8, 2024
2 parents 3ce0b24 + 39bed0e commit c3ca8f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/reusable-linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.is-go }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: golangci-lint
env:
GOLANGCILINT_VERSION: v1.55.2-alpine
Expand All @@ -32,7 +32,7 @@ jobs:
hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: hadolint
env:
HADOLINT_VERSION: 2.12.0-alpine
Expand All @@ -42,7 +42,7 @@ jobs:
renovate-validator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: renovate-validate
env:
RENOVATE_VERSION: "35"
Expand All @@ -52,7 +52,7 @@ jobs:
shellcheck-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: shellcheck-lint
env:
SHELLCHECK_VERSION: v0.9.0
Expand All @@ -62,7 +62,7 @@ jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: yamllint
shell: bash
run: find ${{ inputs.yamldirs }} -path "./examples" -prune -o -name "*.yml" -or -name "*.yaml" -print | xargs -r -n1 docker run -v "$PWD":/work -w /work cytopia/yamllint

0 comments on commit c3ca8f0

Please sign in to comment.