From b4e2ce1f1c38ac23a194a0fdfabcb1eafabbf46c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 23:54:02 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=E2=AC=86=20Bump=20docker/setup-buildx-acti?= =?UTF-8?q?on=20from=202=20to=203?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-test.yaml | 2 +- .github/workflows/e2e_tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index c451c76c..da5eef42 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -18,7 +18,7 @@ jobs: - id: dockerx name: Setup Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - id: build name: Build dev docker diff --git a/.github/workflows/e2e_tests.yaml b/.github/workflows/e2e_tests.yaml index 896d6ba3..ac444a18 100644 --- a/.github/workflows/e2e_tests.yaml +++ b/.github/workflows/e2e_tests.yaml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v2 - name: Setup Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - id: build name: Build dev docker From 0144ec0bce74738ff64fd771ebc5a765e3ccbdc3 Mon Sep 17 00:00:00 2001 From: gitworkflows <118260833+gitworkflows@users.noreply.github.com> Date: Sat, 3 Aug 2024 05:56:25 +0600 Subject: [PATCH 2/3] Update test-redistribute.yml Signed-off-by: gitworkflows <118260833+gitworkflows@users.noreply.github.com> --- .github/workflows/test-redistribute.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-redistribute.yml b/.github/workflows/test-redistribute.yml index e0ab688d..2896dd95 100644 --- a/.github/workflows/test-redistribute.yml +++ b/.github/workflows/test-redistribute.yml @@ -36,7 +36,7 @@ jobs: - name: Decompress source distribution run: | cd dist - tar xvf pr-assistant*.tar.gz + tar xvf pr_assistant*.tar.gz - name: Install test dependencies run: | cd dist/pr-assistant*/ @@ -48,7 +48,7 @@ jobs: - name: Build wheel distribution run: | cd dist - pip wheel --no-deps pr-assistant*.tar.gz + pip wheel --no-deps pr_assistant*.tar.gz - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }} From 3756ab23307a7925c805e4648f621b68a32e983e Mon Sep 17 00:00:00 2001 From: gitworkflows <118260833+gitworkflows@users.noreply.github.com> Date: Sat, 3 Aug 2024 05:58:00 +0600 Subject: [PATCH 3/3] Update test-redistribute.yml Signed-off-by: gitworkflows <118260833+gitworkflows@users.noreply.github.com> --- .github/workflows/test-redistribute.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-redistribute.yml b/.github/workflows/test-redistribute.yml index 2896dd95..92989b5b 100644 --- a/.github/workflows/test-redistribute.yml +++ b/.github/workflows/test-redistribute.yml @@ -39,11 +39,11 @@ jobs: tar xvf pr_assistant*.tar.gz - name: Install test dependencies run: | - cd dist/pr-assistant*/ + cd dist/pr_assistant*/ pip install -r requirements-dev.txt - name: Run source distribution tests run: | - cd dist/pr-assistant*/ + cd dist/pr_assistant*/ bash scripts/test.sh - name: Build wheel distribution run: |