File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,17 @@ jobs:
11
11
name : Code Formatter
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v1 # v2 is broken for git diff
14
+ - uses : actions/checkout@v3 # v2 is broken for git diff
15
15
- uses : actions/setup-python@v2
16
16
- name : requirements
17
17
run : |
18
- sudo apt -qq -y update
19
- sudo apt -qq install clang-tidy-10 clang-format-10
18
+ sudo apt-get -qq update
19
+ sudo apt-get -qq install clang-tidy clang-format
20
20
# checks are passing with less errors when used with this version.
21
21
# The default installs v6.0 which did not work out well in my tests
22
22
- name : Setup Git Specs
23
23
run : |
24
- git config --global user.name David Leal
24
+ git config --global user.name David Leal # This is so that the changes can be pushed to the protected `master` branch.
25
25
git config --global user.email '[email protected] '
26
26
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
27
27
- name : Filename Formatter
You can’t perform that action at this time.
0 commit comments