diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-05-24 15:17:02 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-05-24 15:17:02 -0400 |
commit | f732c7c6ac6cc4ba34f085e9809f30332e8c01f3 (patch) | |
tree | e0f4e3fcc68584b368b3e8ffa6678fcbf01dcf15 /.github | |
parent | 1d9426489836a3178f8e1ef211649b2503a03d85 (diff) | |
download | bfs-f732c7c6ac6cc4ba34f085e9809f30332e8c01f3.tar.xz |
ci: Update GitHub actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | .github/workflows/codecov.yml | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7188dd..9db363d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | @@ -45,7 +45,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | @@ -65,7 +65,7 @@ jobs: concurrency: spurion steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: tailscale/github-action@main with: diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 5de8578..c8808d3 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | @@ -27,6 +27,6 @@ jobs: make -j$(nproc) gcov check TEST_FLAGS="--sudo" gcov -abcfu obj/*/*.o - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v3.1.0 with: fail_ci_if_error: true |