From 4264fdeb53cf53dbaf03fd63be9767c2afe1e01d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:22:17 +0000 Subject: [PATCH 1/2] Update dependency c2cciutils to v1.1.45 --- ci/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/requirements.txt b/ci/requirements.txt index f93cd5df..4b341ab3 100644 --- a/ci/requirements.txt +++ b/ci/requirements.txt @@ -1,4 +1,4 @@ -c2cciutils==1.1.44 +c2cciutils==1.1.45 pip>=21.1 # not directly required, pinned by Snyk to avoid a vulnerability pipenv>=2022.1.8 # not directly required, pinned by Snyk to avoid a vulnerability setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability From ac84bc31e24585ba3887d8b982edba29dbaef37e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Fri, 6 Sep 2024 09:54:39 +0200 Subject: [PATCH 2/2] Remove old pull request checks workflow --- .github/workflows/pr-checks.yaml | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/pr-checks.yaml diff --git a/.github/workflows/pr-checks.yaml b/.github/workflows/pr-checks.yaml deleted file mode 100644 index ed1ff840..00000000 --- a/.github/workflows/pr-checks.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Pull request check - -on: - pull_request: - types: - - opened - - reopened - - labeled - - unlabeled - - edit - - synchronize - -env: - POETRY_DYNAMIC_VERSIONING_BYPASS: 0.0.0 - -jobs: - build: - name: Pull request check - runs-on: ubuntu-22.04 - timeout-minutes: 5 - - steps: - - run: pip install --upgrade attrs - - uses: actions/checkout@v3 - - - run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} - - run: python3 -m pip install --user --pre c2cciutils[pr_checks] - - - name: Check pull request - run: c2cciutils-pull-request-checks - env: - GITHUB_EVENT: ${{ toJson(github) }} - GITHUB_TOKEN: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }}