diff --git a/.github/workflows/industrial_ci.yml b/.github/workflows/industrial_ci.yml index b5b6a87..6c7029f 100644 --- a/.github/workflows/industrial_ci.yml +++ b/.github/workflows/industrial_ci.yml @@ -17,10 +17,10 @@ jobs: strategy: fail-fast: false matrix: - ROS_DISTRO: [humble, jazzy, rolling] + ROS_DISTRO: [humble, jazzy, kilted, lyrical, rolling] ROS_REPO: [main, testing] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: 'ros-industrial/industrial_ci@master' env: ROS_DISTRO: ${{ matrix.ROS_DISTRO }} diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index e2c4c2b..795c00a 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -11,8 +11,8 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 - uses: pre-commit/action@v3.0.1 with: extra_args: --all-files --hook-stage manual diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 824c65e..2a9b75c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ repos: # Standard hooks - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: check-added-large-files - id: check-ast @@ -15,7 +15,7 @@ repos: - id: end-of-file-fixer - id: mixed-line-ending - id: trailing-whitespace - - id: check-byte-order-marker # Forbid UTF-8 byte-order markers + - id: fix-byte-order-marker # Cmake hooks @@ -43,7 +43,7 @@ repos: # Spellcheck in comments and docs # skipping of *.svg files is not working... - repo: https://github.com/codespell-project/codespell - rev: v2.3.0 + rev: v2.4.2 hooks: - id: codespell args: ['--write-changes']