2525 statuses : write
2626
2727 steps :
28- - uses : actions/checkout@v4
28+ - uses : actions/checkout@v6
2929 - name : Set up JDK 11
30- uses : actions/setup-java@v4
30+ uses : actions/setup-java@v5
3131 with :
3232 java-version : 11
3333 distribution : temurin
3737 kv=$(cat gradle/libs.versions.toml | grep '^kotlin =' | awk -F'[=]' '{print $2}' | tr -d '" ')
3838 echo KOTLIN_VERSION=$kv >> $GITHUB_ENV
3939 - name : Cache konan
40- uses : actions/cache@v4
40+ uses : actions/cache@v5
4141 with :
4242 # [@actions/glob](https://github.com/actions/toolkit/tree/main/packages/glob) is used to match paths
4343 # It should correctly expand `~` on every OS.
6666 # into a separate job (or, otherwise, we'd need to upload the content
6767 # of the whole `.git` folder as an artifact).
6868 - name : JUnit Tests (dorny/test-reporter@v1)
69- uses : dorny/test-reporter@v1
69+ uses : dorny/test-reporter@v2
7070 if : ${{ always() }}
7171 with :
7272 name : JUnit Tests (${{ runner.os }}, dorny/test-reporter@v1)
8080 continue-on-error : true
8181
8282 - name : Upload test results
83- uses : actions/upload-artifact@v4
83+ uses : actions/upload-artifact@v7
8484 if : ${{ always() }}
8585 with :
8686 name : xml-test-reports-${{ runner.os }}
@@ -90,13 +90,13 @@ jobs:
9090
9191 - name : Upload gradle reports
9292 if : ${{ always() }}
93- uses : actions/upload-artifact@v4
93+ uses : actions/upload-artifact@v7
9494 with :
9595 name : gradle-reports-${{ matrix.os }}
9696 path : ' **/build/reports/'
9797 - name : Code coverage report
9898 if : ${{ runner.os == 'Linux' }}
99- uses : codecov/codecov-action@v4
99+ uses : codecov/codecov-action@v5
100100 with :
101101 flags : unittests
102102 fail_ci_if_error : false # optional (default = false)
@@ -116,7 +116,7 @@ jobs:
116116 pull-requests : write
117117
118118 steps :
119- - uses : actions/download-artifact@v4
119+ - uses : actions/download-artifact@v8
120120 if : ${{ always() }}
121121 with :
122122 name : xml-test-reports-${{ runner.os }}
0 commit comments