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

Prevent GitHub CI warnings on "Node.js 16 actions are deprecated" #506

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fi
echo 'KERL_RELEASE_TARGET=debug opt' >> $GITHUB_ENV
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update OTP releases
run: ./kerl update releases
- name: Choose OTP version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run ShellCheck and shfmt
uses: luizm/action-sh-checker@v0.7.0
uses: luizm/action-sh-checker@v0.8.0
env:
SHELLCHECK_OPTS: -o all
SHFMT_OPTS: -i 4 -d
# uses .markdownlint.yml for configuration
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v10
uses: DavidAnson/markdownlint-cli2-action@v15
with:
globs: |
*.md
Expand Down