From 67a45a663c60e9457c1971470c99b58ec5a54c19 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 18:25:32 +0100 Subject: [PATCH] Bump actions/download-artifact from 3 to 4 (#1006) Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/cpp-python-build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cpp-python-build.yml b/.github/workflows/cpp-python-build.yml index 184a98e9e3..2292f8ead0 100644 --- a/.github/workflows/cpp-python-build.yml +++ b/.github/workflows/cpp-python-build.yml @@ -378,12 +378,12 @@ jobs: repository: JSBSim-Team/jsbsim-logo path: jsbsim-logo - name: Download binary file for JSBSim.iss - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Matlab-SFunction-Windows.binaries path: build - name: Download JSBSim library and executable - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Windows.binaries - name: Update the version of JSBSim in matlab/README.md @@ -545,7 +545,7 @@ jobs: - name: Install Python packages run: pip install -U cython 'numpy>=1.20' mypy - name: Download source package - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: macOS.binaries - name: Build Python module from sources (Linux & MacOSX) @@ -608,7 +608,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: Download source package - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: macOS.binaries - name: Configure JSBSim (BSD/Unix) @@ -747,7 +747,7 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' steps: - name: Download files - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 - name: Prepare files run: | mkdir dist @@ -781,7 +781,7 @@ jobs: id-token: write # Mandatory for PyPI trusted publishing steps: - name: Download files - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 - name: Prepare files for deployment run: | find . -type f -name MSVC_version.txt -exec cp {} . \; @@ -913,7 +913,7 @@ jobs: mkdir build && cd build cmake .. - name: Download Python wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ubuntu-latest-Wheels.binaries path: build