Skip to content

Commit dee0741

Browse files
authored
Update build-and-test-ubuntu.yml
Upgraded actions from deprecated v3 to v4. Hopefully works now.
1 parent 8ac6221 commit dee0741

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-and-test-ubuntu.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Step 1: Checkout the repository
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
# Step 2: Move to the parent directory and fetch dependencies
2121
- name: Fetch dependencies
@@ -32,7 +32,7 @@ jobs:
3232

3333
# Step 4: Upload the built unit test binaries as artifacts
3434
- name: Upload unit test binaries
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: unit-test-artifacts
3838
path: Tests/bin
@@ -43,7 +43,7 @@ jobs:
4343
steps:
4444
# Step 1: Checkout the repository
4545
- name: Checkout repository
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747

4848
# Step 2: Move to the parent directory and fetch dependencies
4949
- name: Fetch dependencies
@@ -60,7 +60,7 @@ jobs:
6060

6161
# Step 4: Upload the built unit test binaries as artifacts
6262
- name: Upload unit test binaries
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: unit-test-artifacts
6666
path: Tests/bin
@@ -72,7 +72,7 @@ jobs:
7272
steps:
7373
# Step 1: Checkout the repository
7474
- name: Checkout repository
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: List files
7878
run: |
@@ -85,7 +85,7 @@ jobs:
8585

8686
# Step 3: Download the artifacts from the previous job
8787
- name: Download unit test binaries
88-
uses: actions/download-artifact@v3
88+
uses: actions/download-artifact@v4
8989
with:
9090
name: unit-test-artifacts
9191
path: Tests/bin

0 commit comments

Comments
 (0)