From 4390c693022930a89cd0a1e4ec640407c6ba28cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 18:31:19 +0000 Subject: [PATCH] ci: Bump actions/setup-python from 5.1.0 to 5.1.1 in the actions group (#299) --- .github/workflows/ci_workflow.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_workflow.yml b/.github/workflows/ci_workflow.yml index 6f74f49..2d4d941 100644 --- a/.github/workflows/ci_workflow.yml +++ b/.github/workflows/ci_workflow.yml @@ -16,13 +16,13 @@ jobs: python-version: [3.9] steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4 - name: Install Poetry run: | pipx install poetry poetry --version - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: poetry @@ -42,16 +42,21 @@ jobs: PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4 - name: Install Poetry run: | pipx install poetry poetry --version - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: poetry