Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (JSBSim-Team#955)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored and bcoconni committed Sep 10, 2023
1 parent 595e578 commit 8fc2b2a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
if: matrix.language == 'python'
uses: actions/setup-python@v4
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/cpp-python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
sudo apt-get update
sudo apt-get install libxml2-utils
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Validate scripts files
run: |
for filename in scripts/*.xml; do
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Configure the MSIS test program
run: |
mkdir build && cd build
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
export CXXWRAP_PREFIX_PATH=`julia -e "using CxxWrap;print(CxxWrap.prefix_path())"`
echo "CXXWRAP_PREFIX_PATH=$CXXWRAP_PREFIX_PATH" >> $GITHUB_ENV
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Configure JSBSim
run: |
mkdir build && cd build
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Matlab
uses: matlab-actions/[email protected]
with:
Expand Down Expand Up @@ -222,9 +222,9 @@ jobs:
with:
python-version: '3.10'
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checkout CxxTest
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: CxxTest/cxxtest
ref: '4.4'
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
- name: Install Python packages
run: pip install -U cython 'numpy>=1.20' pandas scipy wheel pywin32 'setuptools>=60.0.0'
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache CTest cost data
# Cache the file is used by CTest to optimize the distribution of the tests
# between the cores and reduce execution time.
Expand All @@ -286,7 +286,7 @@ jobs:
build/Testing/Temporary/CTestCostData.txt
key: ${{ runner.os }}-${{ hashFiles('tests/CMakeLists.txt') }}
- name: Checkout CxxTest
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: CxxTest/cxxtest
ref: '4.4'
Expand Down Expand Up @@ -342,9 +342,9 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checkout JSBSim logos
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: JSBSim-Team/jsbsim-logo
path: jsbsim-logo
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
if: matrix.arch == 'x86_64'
run: pip install -U cython 'numpy>=1.20' pandas scipy build 'setuptools>=60.0.0' mypy
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache CTest cost data
# This file is used by CTest to optimize the distribution of the tests
# between the cores and reduce execution time.
Expand All @@ -433,7 +433,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@v3
uses: actions/checkout@v4
with:
repository: CxxTest/cxxtest
ref: '4.4'
Expand Down Expand Up @@ -554,7 +554,7 @@ jobs:

steps:
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -691,7 +691,7 @@ jobs:
sudo apt-get update
sudo apt-get install cxxtest lcov
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Configure JSBSim
run: |
mkdir build && cd build
Expand Down Expand Up @@ -808,7 +808,7 @@ jobs:
# Bump version
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Bump version
Expand Down Expand Up @@ -840,7 +840,7 @@ jobs:
# Bump stable version of the `master` branch
- name: Checkout JSBSim master branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
path: _master
Expand Down Expand Up @@ -872,7 +872,7 @@ jobs:
- name: Install Python packages
run: pip install -U 'numpy>=1.20' sphinx cython
- name: Checkout JSBSim
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Configure JSBSim
run: |
mkdir build && cd build
Expand Down

0 comments on commit 8fc2b2a

Please sign in to comment.