From 52c9f871071263e0fe15dfdaf6a5b5e44d730ba8 Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Wed, 7 Aug 2024 10:57:23 -0400 Subject: [PATCH 1/2] chore: ignore eslint v9 --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2286f38196b..8f3906c1798 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,3 +16,6 @@ updates: dependency-type: production dev: dependency-type: development + ignore: + - dependency-name: "eslint" + versions: [ "9.x" ] From 1ca60b97bec539ae681035891b78aa0a24838d8a Mon Sep 17 00:00:00 2001 From: Fabi Date: Fri, 9 Aug 2024 10:50:21 +0200 Subject: [PATCH 2/2] fix: update action version --- .github/workflows/issues.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 7069700791c..5b1febf9892 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: add issue - uses: actions/add-to-project@v0.5.0 + uses: actions/add-to-project@v1.0.1 if: ${{ github.event_name == 'issues' }} with: # You can target a repository in a different organization @@ -28,14 +28,14 @@ jobs: username: ${{ github.actor }} GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - name: add pr - uses: actions/add-to-project@v0.5.0 + uses: actions/add-to-project@v1.0.1 if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'engineers')}} with: # You can target a repository in a different organization # to the issue project-url: https://github.com/orgs/zitadel/projects/2 github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} - - uses: actions-ecosystem/action-add-labels@v1.1.0 + - uses: actions-ecosystem/action-add-labels@v1.1.3 if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'staff')}} with: github_token: ${{ secrets.ADD_TO_PROJECT_PAT }}