diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0d461d9..0fc79e8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: strategy: matrix: repos: - - tiangolo/fastapi + - pallets/flask steps: - uses: actions/checkout@v4 with: diff --git a/lint/action.yaml b/lint/action.yaml index 2024f66..b3e52ec 100644 --- a/lint/action.yaml +++ b/lint/action.yaml @@ -24,10 +24,10 @@ runs: using: composite steps: - name: Authorize - uses: open-turo/action-git-auth@v3 + uses: open-turo/action-git-auth@v4 if: inputs.github-token != '' with: - github-personal-access-token: ${{ inputs.github-token }} + github-token: ${{ inputs.github-token }} - name: Checkout uses: actions/checkout@v4 if: inputs.checkout-repo == 'true' diff --git a/release-poetry-package/action.yaml b/release-poetry-package/action.yaml index 920da30..e28ffc3 100644 --- a/release-poetry-package/action.yaml +++ b/release-poetry-package/action.yaml @@ -49,9 +49,9 @@ runs: fetch-depth: 0 persist-credentials: false - name: Authorize - uses: open-turo/action-git-auth@v3 + uses: open-turo/action-git-auth@v4 with: - github-personal-access-token: ${{ inputs.github-token }} + github-token: ${{ inputs.github-token }} - name: Set node.js version if: hashFiles('.node-version') == '' shell: bash diff --git a/test/action.yaml b/test/action.yaml index a9f6463..de9eac5 100644 --- a/test/action.yaml +++ b/test/action.yaml @@ -30,10 +30,10 @@ runs: using: composite steps: - name: Authorize - uses: open-turo/action-git-auth@v2 + uses: open-turo/action-git-auth@v4 if: inputs.github-token != '' with: - github-personal-access-token: ${{ inputs.github-token }} + github-token: ${{ inputs.github-token }} - name: Checkout uses: actions/checkout@v4 if: inputs.checkout-repo == 'true'