diff --git a/.github/workflows/distributions.yml b/.github/workflows/distributions.yml index 62e2a39b9..dc70ec62e 100644 --- a/.github/workflows/distributions.yml +++ b/.github/workflows/distributions.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run validation run: python distributions/validate.py distributions/DistributionInfo.json diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index fb51aae09..d0d3f79f5 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -16,7 +16,7 @@ jobs: id-token: write steps: - name: Checkout actions - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install packages run: pip install mkdocs-mermaid2-plugin mkdocs --break-system-packages diff --git a/.github/workflows/issue_edited.yml b/.github/workflows/issue_edited.yml index 75027b89b..9b0144336 100644 --- a/.github/workflows/issue_edited.yml +++ b/.github/workflows/issue_edited.yml @@ -1,22 +1,22 @@ -name: Process edited issue - -on: - workflow_dispatch: - issues: - types: [edited] - -jobs: - wti: - name: Run wti - runs-on: windows-2022 - permissions: - issues: write - steps: - - name: Checkout repo - uses: actions/checkout@v4 - - - uses: ./.github/actions/triage - with: - issue: "${{ github.event.issue.number }}" - previous_body: "${{ github.event.changes.body.from }}" +name: Process edited issue + +on: + workflow_dispatch: + issues: + types: [edited] + +jobs: + wti: + name: Run wti + runs-on: windows-2022 + permissions: + issues: write + steps: + - name: Checkout repo + uses: actions/checkout@v6 + + - uses: ./.github/actions/triage + with: + issue: "${{ github.event.issue.number }}" + previous_body: "${{ github.event.changes.body.from }}" token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/modern-distributions.yml b/.github/workflows/modern-distributions.yml index 7d6121c6e..c263f013c 100644 --- a/.github/workflows/modern-distributions.yml +++ b/.github/workflows/modern-distributions.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/new_issue.yml b/.github/workflows/new_issue.yml index 4e81edf89..250ae3e26 100644 --- a/.github/workflows/new_issue.yml +++ b/.github/workflows/new_issue.yml @@ -13,7 +13,7 @@ jobs: issues: write steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - uses: ./.github/actions/triage with: diff --git a/.github/workflows/new_issue_comment.yml b/.github/workflows/new_issue_comment.yml index b0cd31107..156891462 100644 --- a/.github/workflows/new_issue_comment.yml +++ b/.github/workflows/new_issue_comment.yml @@ -1,23 +1,23 @@ -name: Process new comment on issue - -on: - workflow_dispatch : - issue_comment: - types: [created] - -jobs: - wti: - name: Run wti - runs-on: windows-2022 - permissions: - issues: write - if: ${{ !github.event.issue.pull_request && github.event.issue.user.id == github.event.comment.user.id }} - steps: - - name: Checkout repo - uses: actions/checkout@v4 - - - uses: ./.github/actions/triage - with: - issue: '${{ github.event.issue.number }}' - comment: '${{ github.event.comment.id }}' +name: Process new comment on issue + +on: + workflow_dispatch : + issue_comment: + types: [created] + +jobs: + wti: + name: Run wti + runs-on: windows-2022 + permissions: + issues: write + if: ${{ !github.event.issue.pull_request && github.event.issue.user.id == github.event.comment.user.id }} + steps: + - name: Checkout repo + uses: actions/checkout@v6 + + - uses: ./.github/actions/triage + with: + issue: '${{ github.event.issue.number }}' + comment: '${{ github.event.comment.id }}' token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file