From 7707e1403e114722575be5a47d8cc159f229a33e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:41:44 -0800 Subject: [PATCH] build(deps): bump actions/setup-python from 4 to 5 (#466) Bumps [actions/setup-python](https://github.com/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) --- updated-dependencies: - dependency-name: actions/setup-python 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/CIRunner.yml | 2 +- .github/workflows/UnitTestRunner.yml | 2 +- .github/workflows/doc-release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CIRunner.yml b/.github/workflows/CIRunner.yml index f9f8aae9..5da5524f 100644 --- a/.github/workflows/CIRunner.yml +++ b/.github/workflows/CIRunner.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python ${{ inputs.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }} cache: 'pip' diff --git a/.github/workflows/UnitTestRunner.yml b/.github/workflows/UnitTestRunner.yml index 36544d96..562174d7 100644 --- a/.github/workflows/UnitTestRunner.yml +++ b/.github/workflows/UnitTestRunner.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' diff --git a/.github/workflows/doc-release.yml b/.github/workflows/doc-release.yml index 0bf0b4f1..28910fcc 100644 --- a/.github/workflows/doc-release.yml +++ b/.github/workflows/doc-release.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python ${{ fromJson(needs.variables.outputs.python-versions)[0] }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ fromJson(needs.variables.outputs.python-versions)[0] }} cache: 'pip'