File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
name : Build test artifacts
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - uses : actions/checkout@v2
23
+ - uses : actions/checkout@v4
24
24
with :
25
25
# By default actions/checkout checks out a merge commit. Check out the PR head instead.
26
26
# https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
34
34
- name : Build and archive tests
35
35
run : cargo nextest archive --archive-file nextest-archive.tar.zst
36
36
- name : Upload archive to workflow
37
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
38
38
with :
39
39
name : nextest-archive
40
40
path : nextest-archive.tar.zst
48
48
partition : [1, 2]
49
49
steps :
50
50
# The source directory must be checked out.
51
- - uses : actions/checkout@v2
51
+ - uses : actions/checkout@v4
52
52
with :
53
53
# By default actions/checkout checks out a merge commit. Check out the PR head instead.
54
54
# https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
60
60
- name : Install nextest
61
61
uses : taiki-e/install-action@nextest
62
62
- name : Download archive
63
- uses : actions/download-artifact@v3
63
+ uses : actions/download-artifact@v4
64
64
with :
65
65
name : nextest-archive
66
66
- name : Run tests
You can’t perform that action at this time.
0 commit comments