Skip to content

Commit ba177f8

Browse files
authored
Merge pull request #471 from cse-sim/update-gh-actions
Update GitHub action versions
2 parents 885f523 + a39215b commit ba177f8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/actions/download-cse-artifact/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Download executable artifact
7-
uses: actions/download-artifact@v3
7+
uses: actions/download-artifact@v4
88
with:
99
name: CSE.exe
1010
path: msvc

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
shell: bash
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3.3.0
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
submodules: recursive
@@ -21,7 +21,7 @@ jobs:
2121
run: cmake --build . --config Release --target cse_tests
2222
working-directory: msvc/build
2323
- name: Upload cse.exe artifact
24-
uses: actions/upload-artifact@v3
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: CSE.exe
2727
path: msvc/CSE.exe
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: windows-2022
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v3.3.0
44+
uses: actions/checkout@v4
4545
- name: Configure CMake
4646
run: cmake -P cmake/configure.cmake
4747
- name: Download CSE artifact
@@ -52,7 +52,7 @@ jobs:
5252
run: rake coverage
5353
working-directory: doc
5454
- name: Upload documentation
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: Documentation
5858
path: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
shell: bash
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3.3.0
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
submodules: recursive

0 commit comments

Comments
 (0)