Skip to content

Commit 3ecb442

Browse files
committed
Bump GitHub actions
1 parent 136d963 commit 3ecb442

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/clang-format-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout Code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Clang Format
2323
id: clang
24-
uses: DoozyX/clang-format-lint-action@v0.16.2
24+
uses: DoozyX/clang-format-lint-action@v0.18.2
2525
with:
2626
#source: '.'
2727
#exclude: './third_party ./external'
2828
extensions: 'C,c,c++,cc,cl,cpp,cu,cuh,cxx,cxx.in,h,h++,hh,h.in,hpp,hxx,inc,inl,macro'
29-
clangFormatVersion: 16
29+
# clangFormatVersion: 18
3030
style: file
3131
inplace: true
3232

@@ -48,7 +48,7 @@ jobs:
4848
- name: Create Pull Request with applied fixes
4949
id: cpr
5050
if: github.event_name == 'push'
51-
uses: peter-evans/create-pull-request@v5
51+
uses: peter-evans/create-pull-request@v7
5252
with:
5353
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
5454
commit-message: "[Clang format] Apply linters automatic fixes"

.github/workflows/mega-linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
id: ml
4444
# You can override MegaLinter flavor used to have faster performances
4545
# More info at https://megalinter.io/flavors/
46-
uses: oxsecurity/megalinter@v8.1.0
46+
uses: oxsecurity/megalinter@v8.3.0
4747
env:
4848
# All available variables are described in documentation
4949
# https://megalinter.io/configuration/
@@ -70,7 +70,7 @@ jobs:
7070
- name: Create Pull Request with applied fixes
7171
id: cpr
7272
if: (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'pull_request' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository)
73-
uses: peter-evans/create-pull-request@v5
73+
uses: peter-evans/create-pull-request@v7
7474
with:
7575
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
7676
commit-message: "[MegaLinter] Apply linters automatic fixes"
@@ -101,7 +101,7 @@ jobs:
101101
run: sudo chown -Rc $UID .git/
102102
- name: Commit and push applied linter fixes
103103
if: steps.ml.outputs.has_updated_sources == 1 && (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'commit' && github.ref != 'refs/heads/master' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository)
104-
uses: stefanzweifel/git-auto-commit-action@v4
104+
uses: stefanzweifel/git-auto-commit-action@v5
105105
with:
106106
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
107107
commit_message: "[MegaLinter] Apply linters fixes"

0 commit comments

Comments
 (0)