Skip to content

Commit

Permalink
Bump up actions/checkout version to v4 (#2760)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkarbowiak committed Nov 9, 2023
1 parent b735dfc commit 01cac90
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-bazel-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
compilation_mode: [fastbuild, dbg, opt]

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

- name: Mount bazel cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-meson-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
other_pkgs: clang-11

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

- name: Prepare environment
run: sudo apt-get install -y meson ninja-build ${{matrix.other_pkgs}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-other-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:


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

- name: Prepare environment
run: sudo apt-get install -y ninja-build ${{matrix.other_pkgs}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-simple-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
other_pkgs: g++-10

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

- name: Add repositories for older GCC
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
extra_tests: ON

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

- name: Configure build
working-directory: ${{runner.workspace}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-header-guards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:

- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Dependencies
uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-simple-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_type: [Debug, Release]
std: [14, 17]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure build
working-directory: ${{runner.workspace}}
Expand Down

0 comments on commit 01cac90

Please sign in to comment.