@@ -101,7 +101,7 @@ jobs:
101
101
102
102
# Upload coverage for shard
103
103
- run : mv coverage/coverage-final.json coverage/${{ matrix.shard }}.json
104
- - uses : actions/upload-artifact@v3
104
+ - uses : actions/upload-artifact@v4
105
105
with :
106
106
name : coverage-artifacts
107
107
path : coverage/${{ matrix.shard }}.json
@@ -137,7 +137,7 @@ jobs:
137
137
138
138
# Upload coverage for e2e
139
139
- run : mv coverage/coverage-final.json coverage/e2e.json
140
- - uses : actions/upload-artifact@v3
140
+ - uses : actions/upload-artifact@v4
141
141
with :
142
142
name : coverage-artifacts
143
143
path : coverage/e2e.json
@@ -147,12 +147,12 @@ jobs:
147
147
runs-on : ubuntu-20.04
148
148
needs : [e2e-tests, unit-tests]
149
149
steps :
150
- - uses : actions/download-artifact@v3
150
+ - uses : actions/download-artifact@v4
151
151
with :
152
152
name : coverage-artifacts
153
153
path : coverage
154
154
155
- - uses : codecov/codecov-action@v3
155
+ - uses : codecov/codecov-action@v4
156
156
with :
157
157
directory : coverage
158
158
@@ -205,7 +205,7 @@ jobs:
205
205
echo version="${NEW_VERSION}" >> "$GITHUB_OUTPUT"
206
206
207
207
- name : Create Pull Request
208
- uses : peter-evans/create-pull-request@v5
208
+ uses : peter-evans/create-pull-request@v6
209
209
with :
210
210
commit-message : |
211
211
chore(release): v${{ steps.new-version.outputs.version }}
0 commit comments