diff --git a/.github/workflows/assign.yml b/.github/workflows/assign.yml index f1f379c9..ad323b49 100644 --- a/.github/workflows/assign.yml +++ b/.github/workflows/assign.yml @@ -10,6 +10,6 @@ jobs: steps: - name: Assign reviewer - uses: kentaro-m/auto-assign-action@v1.2.4 + uses: kentaro-m/auto-assign-action@v2.0.0 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/autoupdate-release-draft.yml b/.github/workflows/autoupdate-release-draft.yml index c5e7874c..de43a152 100644 --- a/.github/workflows/autoupdate-release-draft.yml +++ b/.github/workflows/autoupdate-release-draft.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout master branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.base.ref }} - name: Update changelog - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v6 id: release-drafter with: commitish: ${{ github.event.pull_request.base.ref }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4337b90d..54caaaf0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,7 +27,7 @@ jobs: ref: ${{ steps.extract_branch.outputs.branch }} - name: Draft change log - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v6 id: release-drafter with: commitish: ${{ steps.extract_branch.outputs.branch }} @@ -46,7 +46,7 @@ jobs: fi - name: Publish change log - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v6 with: commitish: ${{ steps.extract_branch.outputs.branch }} publish: true @@ -69,7 +69,7 @@ jobs: git fetch --tags - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.9' diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 6dc5a557..43821d58 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -54,7 +54,7 @@ jobs: echo "Changes?: ${{ steps.changes.outputs.changed }}" - name: Create PR if: steps.changes.outputs.changed == 1 - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v6 with: commit-message: Update test timings file branch: maint/update-test-timings diff --git a/.github/workflows/release_drafter.yml b/.github/workflows/release_drafter.yml index 1d5fdf3d..ed125aab 100644 --- a/.github/workflows/release_drafter.yml +++ b/.github/workflows/release_drafter.yml @@ -20,12 +20,12 @@ jobs: echo "Author: ${{ github.triggering_actor }}" echo "Comments: ${{ github.event.inputs.comments }}" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ steps.extract_branch.outputs.branch }} - name: Update changelog - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v6 id: release-drafter env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}