From 970a6755cfeef0b2b33426ba2a1e7771687ae411 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:20:34 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/cache](https://github.com/actions/cache). Updates `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](https://github.com/actions/checkout/compare/v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/centos.yml | 2 +- .github/workflows/main.yml | 2 +- .github/workflows/trik-toolchain.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/centos.yml b/.github/workflows/centos.yml index 74a838e4..ad7069ea 100644 --- a/.github/workflows/centos.yml +++ b/.github/workflows/centos.yml @@ -52,7 +52,7 @@ jobs: echo "PERL5LIB=$PERL5LIB" >> $GITHUB_ENV - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 submodules: recursive diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8e6968a1..393dea29 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -87,7 +87,7 @@ jobs: # After Qt install action, that spoils pythonLocation variable - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} architecture: 'x86' diff --git a/.github/workflows/trik-toolchain.yml b/.github/workflows/trik-toolchain.yml index 40ef4486..1f8724a8 100644 --- a/.github/workflows/trik-toolchain.yml +++ b/.github/workflows/trik-toolchain.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Restore TRIK toolchain - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: /opt/trik-sdk key: trik-sdk @@ -44,7 +44,7 @@ jobs: - name: Save TRIK toolchain if: steps.trik-toolchain-check.outputs.install == 'true' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: /opt/trik-sdk key: trik-sdk