Skip to content

Commit

Permalink
update actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
dmah42 committed Jul 17, 2024
1 parent 44507bc commit 4b184d4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-min-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
os: [ubuntu-latest, macos-latest]

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

- uses: lukka/get-cmake@latest
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-perfcounters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: [ubuntu-22.04, ubuntu-20.04]
build_type: ['Release', 'Debug']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install libpfm
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
lib: ['shared', 'static']

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

- uses: lukka/get-cmake@latest

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
generator: 'Visual Studio 17 2022'

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

- uses: lukka/get-cmake@latest

Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- static

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

- name: Install Base Dependencies
uses: msys2/setup-msys2@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: DoozyX/clang-format-lint-action@v0.13
with:
source: './include/benchmark ./src ./test'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install clang-tidy
run: sudo apt update && sudo apt -y install clang-tidy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetching sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Installing build dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sanitizer: ['asan', 'ubsan', 'tsan', 'msan']

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

- name: configure msan env
if: matrix.sanitizer == 'msan'
Expand Down

0 comments on commit 4b184d4

Please sign in to comment.