diff --git a/.github/workflows/copilot-echo.lock.yml b/.github/workflows/copilot-echo.lock.yml index 570de9d514e543..8fee66da4b665f 100644 --- a/.github/workflows/copilot-echo.lock.yml +++ b/.github/workflows/copilot-echo.lock.yml @@ -81,7 +81,7 @@ jobs: secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }} steps: - name: Setup Scripts - uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.63.0 + uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.65.4 with: destination: ${{ runner.temp }}/gh-aw/actions - name: Generate agentic run info @@ -290,7 +290,7 @@ jobs: output_types: ${{ steps.collect_output.outputs.output_types }} steps: - name: Setup Scripts - uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.63.0 + uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.65.4 with: destination: ${{ runner.temp }}/gh-aw/actions - name: Set runtime paths @@ -904,7 +904,7 @@ jobs: total_count: ${{ steps.missing_tool.outputs.total_count }} steps: - name: Setup Scripts - uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.63.0 + uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.65.4 with: destination: ${{ runner.temp }}/gh-aw/actions - name: Download agent output artifact @@ -999,7 +999,7 @@ jobs: select-copilot-pat_result: ${{ steps.select-copilot-pat.outcome }} steps: - name: Setup Scripts - uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.63.0 + uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.65.4 with: destination: ${{ runner.temp }}/gh-aw/actions - name: Check team membership for workflow @@ -1061,7 +1061,7 @@ jobs: process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }} steps: - name: Setup Scripts - uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.63.0 + uses: github/gh-aw-actions/setup@536ea1bad8c6715d098a9dc1afea8d403733acfe # v0.65.4 with: destination: ${{ runner.temp }}/gh-aw/actions - name: Download agent output artifact diff --git a/.github/workflows/labeler-cache-retention.yml b/.github/workflows/labeler-cache-retention.yml index 2c4013895af0f3..1289f756b077b9 100644 --- a/.github/workflows/labeler-cache-retention.yml +++ b/.github/workflows/labeler-cache-retention.yml @@ -33,7 +33,7 @@ jobs: matrix: type: ["issues", "pulls"] steps: - - uses: dotnet/issue-labeler/restore@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + - uses: dotnet/issue-labeler/restore@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: ${{ matrix.type }} cache_key: ${{ env.CACHE_KEY }} diff --git a/.github/workflows/labeler-predict-issues.yml b/.github/workflows/labeler-predict-issues.yml index 89cc11af409508..c206eb03952616 100644 --- a/.github/workflows/labeler-predict-issues.yml +++ b/.github/workflows/labeler-predict-issues.yml @@ -40,7 +40,7 @@ jobs: steps: - name: "Restore issues model from cache" id: restore-model - uses: dotnet/issue-labeler/restore@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/restore@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: issues fail-on-cache-miss: ${{ env.ALLOW_FAILURE }} @@ -49,7 +49,7 @@ jobs: - name: "Predict issue labels" id: prediction if: ${{ steps.restore-model.outputs.cache-hit == 'true' }} - uses: dotnet/issue-labeler/predict@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/predict@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: issues: ${{ inputs.issues || github.event.issue.number }} label_prefix: ${{ env.LABEL_PREFIX }} diff --git a/.github/workflows/labeler-predict-pulls.yml b/.github/workflows/labeler-predict-pulls.yml index dc35e65490a108..30652b9106ec15 100644 --- a/.github/workflows/labeler-predict-pulls.yml +++ b/.github/workflows/labeler-predict-pulls.yml @@ -114,7 +114,7 @@ jobs: - name: "Restore pulls model from cache" id: restore-model if: ${{ steps.determine-pulls.outputs.pulls != '' }} - uses: dotnet/issue-labeler/restore@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/restore@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: pulls fail-on-cache-miss: ${{ env.ALLOW_FAILURE }} @@ -123,7 +123,7 @@ jobs: - name: "Predict pull labels" id: prediction if: ${{ steps.determine-pulls.outputs.pulls != '' && steps.restore-model.outputs.cache-hit == 'true' }} - uses: dotnet/issue-labeler/predict@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/predict@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: pulls: ${{ steps.determine-pulls.outputs.pulls }} label_prefix: ${{ env.LABEL_PREFIX }} diff --git a/.github/workflows/labeler-promote.yml b/.github/workflows/labeler-promote.yml index c01086c5177938..5f6770a75b4a0d 100644 --- a/.github/workflows/labeler-promote.yml +++ b/.github/workflows/labeler-promote.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Promote Model for Issues" - uses: dotnet/issue-labeler/promote@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/promote@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "issues" staged_key: ${{ inputs.staged_key }} @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Promote Model for Pull Requests" - uses: dotnet/issue-labeler/promote@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/promote@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "pulls" staged_key: ${{ inputs.staged_key }} diff --git a/.github/workflows/labeler-train.yml b/.github/workflows/labeler-train.yml index d94630c9f44478..51b802c048862c 100644 --- a/.github/workflows/labeler-train.yml +++ b/.github/workflows/labeler-train.yml @@ -61,7 +61,7 @@ jobs: issues: read steps: - name: "Download Issues" - uses: dotnet/issue-labeler/download@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/download@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "issues" cache_key: ${{ env.CACHE_KEY }} @@ -80,7 +80,7 @@ jobs: pull-requests: read steps: - name: "Download Pull Requests" - uses: dotnet/issue-labeler/download@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/download@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "pulls" cache_key: ${{ env.CACHE_KEY }} @@ -99,7 +99,7 @@ jobs: needs: download-issues steps: - name: "Train Model for Issues" - uses: dotnet/issue-labeler/train@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/train@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "issues" data_cache_key: ${{ env.CACHE_KEY }} @@ -112,7 +112,7 @@ jobs: needs: download-pulls steps: - name: "Train Model for Pull Requests" - uses: dotnet/issue-labeler/train@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/train@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "pulls" data_cache_key: ${{ env.CACHE_KEY }} @@ -126,7 +126,7 @@ jobs: needs: train-issues steps: - name: "Test Model for Issues" - uses: dotnet/issue-labeler/test@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/test@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "issues" cache_key: ${{ env.CACHE_KEY }} @@ -147,7 +147,7 @@ jobs: needs: train-pulls steps: - name: "Test Model for Pull Requests" - uses: dotnet/issue-labeler/test@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0 + uses: dotnet/issue-labeler/test@46125e85e6a568dc712f358c39f35317366f5eed # v2.0.0-release with: type: "pulls" cache_key: ${{ env.CACHE_KEY }}