Skip to content

Commit d22ef38

Browse files
committed
update action
1 parent e69cfd3 commit d22ef38

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,13 @@ updates:
1414
- "dependencies"
1515
- "npm"
1616
rebase-strategy: "auto"
17-
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "weekly"
22+
open-pull-requests-limit: 5
23+
labels:
24+
- "dependencies"
25+
- "github-actions"
26+
rebase-strategy: "auto"

.github/workflows/tests.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,11 @@ jobs:
9696
- run: npm ci
9797
- run: npm test
9898
- name: upload junit
99-
uses: actions/upload-artifact@v1
99+
uses: actions/upload-artifact@v4
100100
with:
101101
name: junit
102102
path: junit.xml
103+
retention-days: ${{ env.retention_days }}
103104
# displays in summary page
104105
- name: Publish Test Report
105106
uses: mikepenz/action-junit-report@v3
@@ -114,10 +115,11 @@ jobs:
114115
path: junit.xml
115116
- run: npm run test:coverage
116117
- name: upload code coverage
117-
uses: actions/upload-artifact@v1
118+
uses: actions/upload-artifact@v4
118119
with:
119120
name: Report-CodeCoverage
120121
path: coverage
122+
retention-days: ${{ env.retention_days }}
121123
# adds coverage comment to pr
122124
- name: parse coverage
123125
uses: danhunsaker/clover-reporter-action@v0.2.17-clover

0 commit comments

Comments
 (0)