Skip to content

Commit bdd8f32

Browse files
author
Teseo Schneider
committed
chore: Update GitHub Actions versions for continuous integration and coverage workflows
1 parent d41a6e1 commit bdd8f32

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/continuous.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: Linux
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v1
32+
uses: actions/checkout@v4.1.6
3333
with:
3434
fetch-depth: 10
3535

@@ -53,7 +53,7 @@ jobs:
5353
5454
- name: Cache Build
5555
id: cache-build
56-
uses: actions/cache@v2
56+
uses: actions/cache@v4.0.2
5757
with:
5858
path: ${{ env.CACHE_PATH }}
5959
key: ${{ runner.os }}-${{ matrix.config }}-cache-${{ github.sha }}
@@ -92,7 +92,7 @@ jobs:
9292
config: [Debug, Release]
9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v1
95+
uses: actions/checkout@v4.1.6
9696
with:
9797
fetch-depth: 10
9898

@@ -105,7 +105,7 @@ jobs:
105105
106106
- name: Cache build
107107
id: cache-build
108-
uses: actions/cache@v2
108+
uses: actions/cache@v4.0.2
109109
with:
110110
path: ${{ env.appdata }}\Mozilla\sccache
111111
key: ${{ runner.os }}-${{ matrix.config }}-cache-${{ github.sha }}

.github/workflows/coverage.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Linux
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v1
26+
uses: actions/checkout@v4.1.6
2727
with:
2828
fetch-depth: 10
2929

@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Cache Build
4343
id: cache-build
44-
uses: actions/cache@v3
44+
uses: actions/cache@v4.0.2
4545
with:
4646
path: ${{ env.CACHE_PATH }}
4747
key: ${{ runner.os }}-Release-${{ matrix.threading }}-cache-${{ github.sha }}
@@ -72,7 +72,9 @@ jobs:
7272
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' '*tests/*.cpp' '*tests/*.h' --output-file coverage.info
7373
7474
- name: Upload Coverage
75-
uses: codecov/codecov-action@v3
75+
uses: codecov/codecov-action@v4
76+
env:
77+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7678
with:
7779
flags: polysolve # optional
7880
files: coverage.info

0 commit comments

Comments
 (0)