|
15 | 15 | steps: |
16 | 16 | # Step 1: Checkout the repository |
17 | 17 | - name: Checkout repository |
18 | | - uses: actions/checkout@v3 |
| 18 | + uses: actions/checkout@v4 |
19 | 19 |
|
20 | 20 | # Step 2: Move to the parent directory and fetch dependencies |
21 | 21 | - name: Fetch dependencies |
|
32 | 32 |
|
33 | 33 | # Step 4: Upload the built unit test binaries as artifacts |
34 | 34 | - name: Upload unit test binaries |
35 | | - uses: actions/upload-artifact@v3 |
| 35 | + uses: actions/upload-artifact@v4 |
36 | 36 | with: |
37 | 37 | name: unit-test-artifacts |
38 | 38 | path: Tests/bin |
|
43 | 43 | steps: |
44 | 44 | # Step 1: Checkout the repository |
45 | 45 | - name: Checkout repository |
46 | | - uses: actions/checkout@v3 |
| 46 | + uses: actions/checkout@v4 |
47 | 47 |
|
48 | 48 | # Step 2: Move to the parent directory and fetch dependencies |
49 | 49 | - name: Fetch dependencies |
|
60 | 60 |
|
61 | 61 | # Step 4: Upload the built unit test binaries as artifacts |
62 | 62 | - name: Upload unit test binaries |
63 | | - uses: actions/upload-artifact@v3 |
| 63 | + uses: actions/upload-artifact@v4 |
64 | 64 | with: |
65 | 65 | name: unit-test-artifacts |
66 | 66 | path: Tests/bin |
|
72 | 72 | steps: |
73 | 73 | # Step 1: Checkout the repository |
74 | 74 | - name: Checkout repository |
75 | | - uses: actions/checkout@v3 |
| 75 | + uses: actions/checkout@v4 |
76 | 76 |
|
77 | 77 | - name: List files |
78 | 78 | run: | |
|
85 | 85 |
|
86 | 86 | # Step 3: Download the artifacts from the previous job |
87 | 87 | - name: Download unit test binaries |
88 | | - uses: actions/download-artifact@v3 |
| 88 | + uses: actions/download-artifact@v4 |
89 | 89 | with: |
90 | 90 | name: unit-test-artifacts |
91 | 91 | path: Tests/bin |
|
0 commit comments