Skip to content

Bump actions to latest versions #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cmake-args: -G "Unix Makefiles" -D CMAKE_OSX_ARCHITECTURES=x86_64
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7
with:
submodules: recursive
- run: |
Expand All @@ -39,7 +39,7 @@ jobs:
cmake ${{ matrix.cmake-args }} -B ${{ matrix.name }} .
cmake --build ${{ matrix.name }} --config Release
ctest --test-dir ${{ matrix.name }} --build-config Release
- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4.4.0
with:
name: ${{ matrix.name }}
path: SDF
Expand All @@ -48,25 +48,25 @@ jobs:
runs-on: ubuntu-20.04
needs: [build]
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/download-artifact@v4.1.2
- uses: actions/checkout@v4.1.7
- uses: actions/download-artifact@v4.1.8
with:
name: win64
path: SDF
- uses: actions/download-artifact@v4.1.2
- uses: actions/download-artifact@v4.1.8
with:
name: win32
path: SDF
- uses: actions/download-artifact@v4.1.2
- uses: actions/download-artifact@v4.1.8
with:
name: linux64
path: SDF
- uses: actions/download-artifact@v4.1.2
- uses: actions/download-artifact@v4.1.8
with:
name: darwin64
path: SDF
- run: find -type f -name .gitignore -delete
- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4.4.0
with:
name: SDF-Modelica
path: |
Expand Down
Loading