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/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup Python
if: matrix.language == 'python'
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
sudo apt-get update
sudo apt-get install cxxtest lcov
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Configure JSBSim
run: |
mkdir build && cd build
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/cpp-python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
sudo apt-get update
sudo apt-get install libxml2-utils
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Validate scripts files
run: |
for filename in scripts/*.xml; do
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Configure the MSIS test program
run: |
mkdir build && cd build
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
sudo apt-get update
sudo apt-get install cxxtest valgrind binutils-dev
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Cache Python packages & CTest cost data
# CTestCostData.txt is used by CTest to optimize the distribution of the
# tests between the CPU cores and reduce execution time.
Expand All @@ -124,7 +124,7 @@ jobs:
- name: Checkout Backward-cpp
if: matrix.display_stack_trace == 'ON'
id: BackwardCppCheckout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: bombela/backward-cpp
ref: 'v1.6'
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up Matlab
uses: matlab-actions/setup-matlab@v2
with:
Expand Down Expand Up @@ -256,9 +256,9 @@ jobs:
with:
python-version: '3.10'
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Checkout CxxTest
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: CxxTest/cxxtest
ref: '4.4'
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
shared_libs: [ON, OFF]
steps:
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Cache Python packages & CTest cost data
# CTestCostData.txt is used by CTest to optimize the distribution of the
# tests between the CPU cores and reduce execution time.
Expand All @@ -320,7 +320,7 @@ jobs:
- name: Install Python packages
run: pip install -r python/requirements.txt
- name: Checkout CxxTest
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: CxxTest/cxxtest
ref: '4.4'
Expand All @@ -331,7 +331,7 @@ jobs:
cp python/python3/cxxtest/*.py cxxtest/.
cp python/python3/scripts/cxxtestgen .
- name: Checkout Backward-cpp
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: bombela/backward-cpp
ref: 'v1.6'
Expand Down Expand Up @@ -385,9 +385,9 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Checkout JSBSim logos
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: JSBSim-Team/jsbsim-logo
path: jsbsim-logo
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Cache Python packages & CTest cost data
# CTestCostData.txt is used by CTest to optimize the distribution of the
# tests between the CPU cores and reduce execution time.
Expand Down Expand Up @@ -484,7 +484,7 @@ jobs:
perl -i -pe 's/^(GENERATE_HTML\s*=\s*)YES/\1NO/g' doc/JSBSim.dox.in
perl -i -pe 's/^(HAVE_DOT\s*=\s*)YES/\1NO/g' doc/JSBSim.dox.in
- name: Checkout CxxTest
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: CxxTest/cxxtest
ref: '4.4'
Expand Down Expand Up @@ -604,7 +604,7 @@ jobs:

steps:
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up Python 3.9
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -827,7 +827,7 @@ jobs:

# Bump version
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Bump version
Expand Down Expand Up @@ -861,7 +861,7 @@ jobs:

# Bump stable version of the `master` branch
- name: Checkout JSBSim master branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: master
path: _master
Expand Down Expand Up @@ -905,7 +905,7 @@ jobs:
- name: Install Python packages
run: pip install -U 'numpy>=1.20' sphinx cython
- name: Checkout JSBSim
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Configure JSBSim
run: |
mkdir build && cd build
Expand Down
Loading