-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update GitHub Action checkout action to v4
- Loading branch information
1 parent
2ea8055
commit b00d05d
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,15 +82,15 @@ jobs: | |
clang-format: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: DoozyX/[email protected] | ||
with: | ||
clangFormatVersion: 16 | ||
exclude: './thirdParty' | ||
inplace: True | ||
- run: | | ||
git diff --exit-code > format.patch | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: format.patch | ||
|
@@ -204,7 +204,7 @@ jobs: | |
- name: check filter | ||
if: (contains(github.event.head_commit.message, 'ci_filter') && !contains(github.event.head_commit.message, matrix.name )) | ||
run: exit 1 | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
# Print the environment variables in an additional step so that the environment variables can be displayed if the job is still running. | ||
# Call ./script/set_default_env_vars.sh in each step, as the environment variables are not shared between the steps by default. | ||
- name: print environment variables | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters