Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/Line_Endings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Check for CRLF line endings
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install libopenmpi-dev openmpi-bin

- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: git config --global --add safe.directory /__w/fds/fds

- name: set linux-gnu compiler
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: install openmpi
run: brew install gcc@15 open-mpi
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
shell: cmd

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# install oneapi components from web installer based on
# oneapi-ci/scripts/install_windows.bat
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
[email protected]
prune: false

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: build fds debug
run: |
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
[email protected]
prune: false

- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build fds debug
run: |
source /opt/intel/oneapi/setvars.sh
Expand All @@ -96,7 +96,7 @@ jobs:
runs-on: [ubuntu-latest]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: install openmpi
run: |
brew install gcc@15 open-mpi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
shell: cmd

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# install oneapi components from web installer based on
# oneapi-ci/scripts/install_windows.bat
Expand Down
Loading