From 5a455c62bf290808cb7ae094623576b21cf78ad0 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Wed, 13 Nov 2024 14:28:28 -0500 Subject: [PATCH] chore(ci): upgrade to v5-beta --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54c26db..a619ecc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,12 +5,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5.0.0-beta - name: Compile calculator run: gcc -fprofile-arcs -ftest-coverage -O0 -o test_calculator test_calculator.c calculator.c - name: Run tests run: ./test_calculator - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5.0.0-beta env: CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}