Skip to content

Commit

Permalink
update GitHub Action checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
SimeonEhrig authored and fwyzard committed Jan 23, 2025
1 parent 2ea8055 commit b00d05d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/single-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
single-header:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: clone single-header
run: |
git clone -b single-header --single-branch https://x-access-token:${{secrets.github_token}}@github.com/${{github.repository}}.git single-header
Expand Down

0 comments on commit b00d05d

Please sign in to comment.