From dec14c7725b042608804bd4aa2dbf4136a451752 Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Thu, 9 Nov 2023 14:42:04 -0600 Subject: [PATCH] ci: Update versions of checkout - Update the versions of actions/checkout to v4 in the CI/CD configuration file. This ensures that the latest version of the action is used for checking out the repository. - Also update the versions of actions/setup-python to v4 in the CI/CD configuration file. This ensures that the latest version of the action is used for setting up Python. - The matrix configuration is updated to use Python versions 3.11 and 3.12 for the jobs. - With these changes, the CI/CD workflow is now using the latest versions of the actions for checking out the repository and setting up Python, improving the reliability and efficiency of the workflow. --- .github/workflows/cicd.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 6a87307..94ab5a4 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -13,9 +13,9 @@ jobs: matrix: python-version: [3.11, 3.12] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install Poetry @@ -35,9 +35,9 @@ jobs: matrix: python-version: [3.11, 3.12] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install Poetry @@ -57,9 +57,9 @@ jobs: matrix: python-version: [3.11, 3.12] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install Poetry @@ -80,9 +80,9 @@ jobs: matrix: python-version: [3.11, 3.12] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Build and publish