Skip to content

Commit

Permalink
Bump version in formatting action (ros-controls#887)
Browse files Browse the repository at this point in the history
This avoids warning when executing formatting action: "Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/setup-python@v2, pre-commit/[email protected]"

For example: https://github.com/ros-controls/ros2_control/actions/runs/3855204458
  • Loading branch information
destogl authored Jan 6, 2023
1 parent 570bbb8 commit 0741a49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4.4.0
with:
python-version: 3.9
- name: Install system hooks
run: sudo apt install -qq clang-format-12 cppcheck
- uses: pre-commit/action@v2.0.3
- uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files --hook-stage manual

0 comments on commit 0741a49

Please sign in to comment.