From 5f8135532badfabf1fbb562277ae867fff8fd078 Mon Sep 17 00:00:00 2001 From: James Wood Date: Wed, 15 May 2024 13:35:09 -0700 Subject: [PATCH] update actions versions --- .github/workflows/build-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index bfe739fb..6c83eb3d 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -23,8 +23,8 @@ jobs: runs-on: ubuntu-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install Poetry @@ -190,7 +190,7 @@ jobs: - name: Build Python Artifact run: | poetry build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: python-artifact path: dist/*