Skip to content

Commit

Permalink
ci: update actions (#886)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud authored Jan 1, 2023
1 parent 2115d9b commit f545ff5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build_type: [Debug, Release]

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

- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
std: [98, 11, 14, 17, 20]

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

- name: Setup Dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
std: [98, 11, 14, 17, 20]

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

- name: Setup Dependencies
run: |
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Cache GTest
id: cache-gtest
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: gtest/
key: ${{runner.os}}-gtest-1.11
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Upload Coverage to Codecov
if: matrix.build_type == 'Debug'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- build_type: Debug

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

- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@master
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Upload Coverage to Codecov
if: matrix.build_type == 'Debug'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
generator: 'Visual Studio 17 2022'

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

- name: Cache GTest
id: cache-gtest
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: gtest/
key: ${{runner.os}}-gtest-1.11-${{matrix.lib}}-${{matrix.arch}}-${{matrix.build_type}}
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache gflags
id: cache-gflags
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: gflags/
key: ${{runner.os}}-gflags-2.2.2-${{matrix.lib}}-${{matrix.arch}}-${{matrix.build_type}}
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
env: x86_64

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
- name: Upload Coverage to Codecov
if: matrix.build_type == 'Debug'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand Down

0 comments on commit f545ff5

Please sign in to comment.