Skip to content

Commit

Permalink
CI: Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed May 15, 2024
1 parent 29d6792 commit 2db2c53
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: "check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache ccache
uses: rhaschke/cache@main
Expand All @@ -50,7 +50,7 @@ jobs:
env: ${{ matrix.env || env }}

- name: Upload test results (on failure)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: abi-check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: "${{ matrix.distro }} • ogre ${{ matrix.ogre }} • Qt ${{ matrix.qt }}${{ matrix.env.CLANG_TIDY && (github.event_name != 'workflow_dispatch' && ' • clang-tidy (delta)' || ' • clang-tidy (all)') || '' }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache ccache
uses: rhaschke/cache@main
Expand All @@ -64,7 +64,7 @@ jobs:
uses: rhaschke/industrial_ci@master

- name: Upload test artifacts (on failure)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
name: pre-commit
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install clang-format-12
run: sudo apt-get install clang-format-12
- uses: rhaschke/install-catkin_lint-action@v1.0
with:
distro: noetic
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: "${{ matrix.distro }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache ccache
uses: rhaschke/cache@main
with:
Expand All @@ -37,7 +37,7 @@ jobs:
uses: rhaschke/industrial_ci@master

- name: Upload test artifacts (on failure)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/robostack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
os: [ubuntu-20.04, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Build Dependencies
uses: mamba-org/provision-with-micromamba@v11
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: 24.4.1
rev: 24.4.2
hooks:
- id: black

- repo: https://github.com/PyCQA/pylint
rev: v3.1.0
rev: v3.2.0
hooks: []

- repo: local
Expand Down

0 comments on commit 2db2c53

Please sign in to comment.