File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 style-check :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v3
13+ - uses : actions/checkout@v4
1414 - name : Run clang-format check
1515 run : |
1616 sudo apt-get update
@@ -29,15 +29,15 @@ jobs:
2929 sanitizer : thread # Focus TSan on Clang for faster CI
3030
3131 steps :
32- - uses : actions/checkout@v3
32+ - uses : actions/checkout@v4
3333
3434 - name : Install dependencies
3535 run : |
3636 sudo apt-get update
3737 sudo apt-get install -y cmake clang clang-tidy llvm ninja-build ccache lcov
3838
3939 - name : Cache ccache
40- uses : actions/cache@v3
40+ uses : actions/cache@v4
4141 with :
4242 path : ~/.ccache
4343 key : ${{ runner.os }}-${{ matrix.compiler }}-${{ matrix.sanitizer }}-ccache-${{ github.sha }}
@@ -89,14 +89,14 @@ jobs:
8989
9090 - name : Upload Coverage
9191 if : matrix.sanitizer == 'address' && matrix.compiler == 'clang++'
92- uses : actions/upload-artifact@v3
92+ uses : actions/upload-artifact@v4
9393 with :
9494 name : code-coverage-report
9595 path : build/out_coverage
9696
9797 - name : Upload Binaries
9898 if : matrix.sanitizer == 'address'
99- uses : actions/upload-artifact@v3
99+ uses : actions/upload-artifact@v4
100100 with :
101101 name : cloudsql-bin-${{ matrix.compiler }}
102102 path : build/sqlEngine
You can’t perform that action at this time.
0 commit comments