Skip to content

Commit

Permalink
Merge pull request #19 from minddocdev/renovate-actions-checkout-4.x
Browse files Browse the repository at this point in the history
chore(deps): update actions/checkout action to v4
  • Loading branch information
raphaelluchini authored Sep 29, 2023
2 parents 54e1cf5 + 76e3f39 commit aa953c4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
container: tmknom/markdownlint:latest
steps:
- name: Checkout git repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Lint markdown files
run: '
find . -type f \( -name "*.md" \) -print |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
container: koalaman/shellcheck-alpine:latest
steps:
- name: Checkout git repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check shell scripts
run: '
find . -type f \( -name "*.sh" \) -print |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build .
2 changes: 1 addition & 1 deletion .github/workflows/yaml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
container: giantswarm/yamllint:latest
steps:
- name: Checkout git repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Lint yaml files
run: yamllint -c .yamllint.yaml .

0 comments on commit aa953c4

Please sign in to comment.