Skip to content

Commit

Permalink
CI/CD: update actions to fix Node 12 deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleFox94 committed Jun 14, 2023
1 parent 0aabc61 commit 0d735ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.11
uses: jwlawson/actions-setup-cmake@v1.14
with:
cmake-version: 3.22.x
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install gtest and gcovr
env:
DEBIAN_FRONTEND: noninteractive
Expand All @@ -30,7 +30,7 @@ jobs:
path: build/junit.xml
reporter: jest-junit
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: build/coverage.xml

Expand All @@ -57,7 +57,7 @@ jobs:
image: ${{ matrix.os.name }}:${{ matrix.os.version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install build dependencies
env:
DEBIAN_FRONTEND: noninteractive
Expand All @@ -71,7 +71,7 @@ jobs:
../ && \
make package
- name: Uploading artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pmalloc-${{ matrix.os.name }}-${{ matrix.os.version }}
path: |
Expand Down

0 comments on commit 0d735ba

Please sign in to comment.