Skip to content

Commit ca2e459

Browse files
authored
Fix out-of-date packages breaking github workflow (#310)
* Update actions/cache to v4 in github workflow * Update codecov.io upload action in github workflow
1 parent 7a9ee6d commit ca2e459

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
distribution: corretto
2121
java-version: ${{ matrix.java }}
2222
- name: Cache Gradle packages
23-
uses: actions/cache@v1
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.gradle/caches
2626
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
@@ -40,10 +40,10 @@ jobs:
4040
java-version: 11
4141
- run: ./gradlew koverXmlReport
4242
- name: Upload Ion Schema Code Coverage
43-
uses: codecov/codecov-action@v3
43+
uses: codecov/codecov-action@v5
4444
with:
45-
file: ion-schema/build/reports/kover/report.xml
45+
files: ion-schema/build/reports/kover/report.xml
4646
- name: Upload CLI Code Coverage
47-
uses: codecov/codecov-action@v3
47+
uses: codecov/codecov-action@v5
4848
with:
49-
file: cli/build/reports/kover/report.xml
49+
files: cli/build/reports/kover/report.xml

0 commit comments

Comments
 (0)