From 0bda09850780d7d92bf46657bd13ad00d2dd8c9f Mon Sep 17 00:00:00 2001 From: Jesse Claven Date: Wed, 28 Aug 2024 16:33:22 +0100 Subject: [PATCH] Combine current Dependabot updates (#92) To save from the tediousness of the cache trick per each PR. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- .github/workflows/integration-tests.yml | 4 ++-- .github/workflows/semver.yml | 4 ++-- poetry.lock | 8 ++++---- pyproject.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98c629a..3bbb587 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: make test - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4.0.2 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} @@ -41,7 +41,7 @@ jobs: - name: Login to Amazon ECR id: login-ecr - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - name: Push Images to ECR run: | diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index fc19c41..9404a1e 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -43,11 +43,11 @@ jobs: run: make build - name: Configuring AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4.0.2 with: + aws-region: ${{ secrets.UNIT_TESTS_AWS_REGION }} aws-access-key-id: ${{ secrets.UNIT_TESTS_AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.UNIT_TESTS_AWS_SECRET_ACCESS_KEY }} - aws-region: ${{ secrets.UNIT_TESTS_AWS_REGION }} - name: Set Dynamic Bucket Names run: | diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml index fa39abc..936d56b 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4.0.2 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} @@ -25,7 +25,7 @@ jobs: - name: Login to Amazon ECR id: login-ecr - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - name: Docker pull run: | diff --git a/poetry.lock b/poetry.lock index 160f88d..c7570f8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2613,13 +2613,13 @@ testing = ["coverage (>=6.2)", "flaky (>=3.5.0)", "hypothesis (>=5.7.1)", "mypy [[package]] name = "python-dateutil" -version = "2.8.2" +version = "2.9.0.post0" description = "Extensions to the standard Python datetime module" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, ] [package.dependencies] @@ -3912,4 +3912,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "34e2429f84abd750e53c6c02bf456f2229085983d710a8e6235f4cc1e9440bce" +content-hash = "2644383230fa333491690a05c7e701d23a5035fb6d8e54c8c143039874e4e1d9" diff --git a/pyproject.toml b/pyproject.toml index e8bd9b0..32478d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ click = "^8.1.2" cloudpathlib = { version = "^0.10.0", extras = ["s3"] } pydantic = "^2.4.0" python-slugify = "^6.1.2" -python-dateutil = "^2.8.2" +python-dateutil = "^2.9.0" python-dotenv = "^0.19.2" requests = "^2.28.1" tenacity = "^9.0.0"