@@ -61,16 +61,16 @@ jobs:
6161 runs-on : ubuntu-24.04
6262 steps :
6363 - name : Checkout Project
64- uses : actions/checkout@v4.2.2
64+ uses : actions/checkout@v5.0.0
6565
6666 - name : Build Project
67- uses : threeal/cmake-action@v2.0 .0
67+ uses : threeal/cmake-action@v2.1 .0
6868
6969 - name : Test Project
7070 uses : threeal/ctest-action@v1.1.0
7171
7272 - name : Check Test Coverage
73- uses : threeal/gcovr-action@v1.1 .0
73+ uses : threeal/gcovr-action@v1.2 .0
7474` ` `
7575
7676### Specify Test Coverage Threshold
@@ -79,7 +79,7 @@ To specify the minimum required test coverage threshold, set the `fail-under-lin
7979
8080` ` ` yaml
8181- name: Check Test Coverage
82- uses: threeal/gcovr-action@v1.1 .0
82+ uses: threeal/gcovr-action@v1.2 .0
8383 with:
8484 fail-under-line: 80
8585` ` `
@@ -90,7 +90,7 @@ Specify the `html-out` input to generate the test coverage report in HTML format
9090
9191` ` ` yaml
9292- name: Generate HTML Report
93- uses: threeal/gcovr-action@v1.1 .0
93+ uses: threeal/gcovr-action@v1.2 .0
9494 with:
9595 html-out: coverage.html
9696` ` `
@@ -99,7 +99,7 @@ Other options are also available to customize the generated HTML output:
9999
100100` ` ` yaml
101101- name: Generate HTML Report
102- uses: threeal/gcovr-action@v1.1 .0
102+ uses: threeal/gcovr-action@v1.2 .0
103103 with:
104104 html-out: coverage.html
105105 html-details: true
@@ -113,7 +113,7 @@ Specify the `xml-out` input to generate the test coverage report in Cobertura fo
113113
114114` ` ` yaml
115115- name: Generate Cobertura Report
116- uses: threeal/gcovr-action@v1.1 .0
116+ uses: threeal/gcovr-action@v1.2 .0
117117 with:
118118 xml-out: cobertura.xml
119119` ` `
@@ -124,7 +124,7 @@ Specify the `coveralls-out` input to generate the test coverage report in Covera
124124
125125` ` ` yaml
126126- name: Generate Coveralls Report
127- uses: threeal/gcovr-action@v1.1 .0
127+ uses: threeal/gcovr-action@v1.2 .0
128128 with:
129129 coveralls-out: coveralls.json
130130` ` `
@@ -133,7 +133,7 @@ Rather than outputting the report as a file, it can also be directly sent to Cov
133133
134134` ` ` yaml
135135- name: Send Coveralls Report
136- uses: threeal/gcovr-action@v1.1 .0
136+ uses: threeal/gcovr-action@v1.2 .0
137137 with:
138138 coveralls-send: true
139139` ` `
@@ -144,7 +144,7 @@ By default, gcovr works well with projects compiled using GCC. However, for proj
144144
145145` ` ` yaml
146146- name: Check Test Coverage
147- uses: threeal/gcovr-action@v1.1 .0
147+ uses: threeal/gcovr-action@v1.2 .0
148148 with:
149149 gcov-executable: llvm-cov gcov
150150` ` `
0 commit comments