File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ jobs:
197
197
runs-on : windows-latest
198
198
suffix : .exe
199
199
steps :
200
- - uses : actions/checkout@v3
200
+ - uses : actions/checkout@v4
201
201
202
202
- uses : dtolnay/rust-toolchain@master
203
203
with :
@@ -213,7 +213,7 @@ jobs:
213
213
- run : mv target/${{ matrix.target }}/release/svd2rust${{ matrix.suffix || '' }} svd2rust-${{ matrix.target }}-$(git rev-parse --short HEAD)${{ matrix.suffix || '' }}
214
214
215
215
- name : Upload artifact
216
- uses : actions/upload-artifact@v3
216
+ uses : actions/upload-artifact@v4
217
217
with :
218
218
name : artifact-svd2rust-${{ matrix.target }}
219
219
path : svd2rust-${{ matrix.target }}*
Original file line number Diff line number Diff line change 52
52
if : ${{ matrix.os == 'windows-latest' }}
53
53
run : mv target/${{ matrix.target }}/release/svd2rust${{ matrix.suffix }} svd2rust-${{ matrix.target }}${{ matrix.suffix }}
54
54
55
- - uses : actions/upload-artifact@v3
55
+ - uses : actions/upload-artifact@v4
56
56
with :
57
57
name : svd2rust-${{ matrix.target }}
58
58
path : svd2rust-${{ matrix.target }}${{ matrix.suffix }}
63
63
needs : [build]
64
64
steps :
65
65
- uses : actions/checkout@v4
66
- - uses : actions/download-artifact@v3
66
+ - uses : actions/download-artifact@v4
67
67
with :
68
68
path : artifacts
69
69
- run : ls -R ./artifacts
76
76
with :
77
77
version : ${{ (github.ref_type == 'tag' && github.ref_name) || 'Unreleased' }}
78
78
79
- - uses : softprops/action-gh-release@v1
79
+ - uses : softprops/action-gh-release@v2
80
80
with :
81
81
tag_name : ${{ steps.changelog-reader.outputs.version }}
82
82
name : ${{ (github.ref_type == 'tag' && steps.changelog-reader.outputs.version) || format('Prereleased {0}', env.CURRENT_DATE) }}
You can’t perform that action at this time.
0 commit comments