From c6e8b3f200f43a00fcabad892b66ca93e91347b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 01:06:18 +0000 Subject: [PATCH] Bump the development-dependencies group across 1 directory with 7 updates Bumps the development-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `46` | `47` | | [rojopolis/spellcheck-github-actions](https://github.com/rojopolis/spellcheck-github-actions) | `0.51.0` | `0.53.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [peter-evans/find-comment](https://github.com/peter-evans/find-comment) | `3` | `4` | | [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) | `4` | `5` | Updates `tj-actions/changed-files` from 46 to 47 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v46...v47) Updates `rojopolis/spellcheck-github-actions` from 0.51.0 to 0.53.0 - [Release notes](https://github.com/rojopolis/spellcheck-github-actions/releases) - [Changelog](https://github.com/rojopolis/spellcheck-github-actions/blob/master/CHANGELOG.md) - [Commits](https://github.com/rojopolis/spellcheck-github-actions/compare/0.51.0...0.53.0) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) Updates `peter-evans/find-comment` from 3 to 4 - [Release notes](https://github.com/peter-evans/find-comment/releases) - [Commits](https://github.com/peter-evans/find-comment/compare/v3...v4) Updates `peter-evans/create-or-update-comment` from 4 to 5 - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](https://github.com/peter-evans/create-or-update-comment/compare/v4...v5) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-version: '47' dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies - dependency-name: rojopolis/spellcheck-github-actions dependency-version: 0.53.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies - dependency-name: peter-evans/find-comment dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies - dependency-name: peter-evans/create-or-update-comment dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/doc-update.yml | 12 ++++++------ .github/workflows/go-test.yml | 4 ++-- .github/workflows/pr-comment.yml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/doc-update.yml b/.github/workflows/doc-update.yml index f7c8c67..1ee3333 100644 --- a/.github/workflows/doc-update.yml +++ b/.github/workflows/doc-update.yml @@ -60,7 +60,7 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} - name: Get changed markdown files - uses: tj-actions/changed-files@v46 + uses: tj-actions/changed-files@v47 id: changed-markdown-files with: files: '**/*.md' @@ -174,7 +174,7 @@ jobs: cp ci-tools/${{ env.spellcheck_dict }} ${{ env.spellcheck_dict }} - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.51.0 + uses: rojopolis/spellcheck-github-actions@0.53.0 continue-on-error: true id: spellcheck with: @@ -256,7 +256,7 @@ jobs: echo "reactions=hooray" >> "$GITHUB_OUTPUT" - name: Upload comment as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: path: ${{ env.artifacts_dir }}/${{ env.markdown_artifact }} name: ${{ env.markdown_artifact }} @@ -324,7 +324,7 @@ jobs: echo "> ℹ️ INFO: we use [avtodev/markdown-lint action](https://github.com/avto-dev/markdown-lint)" >> $GITHUB_STEP_SUMMARY - name: Upload comment as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: path: ${{ env.artifacts_dir }}/${{ env.markdown_artifact }} name: ${{ env.markdown_artifact }} @@ -391,7 +391,7 @@ jobs: echo "reactions=hooray" >> "$GITHUB_OUTPUT" - name: Upload comment as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: path: ${{ env.artifacts_dir }}/${{ env.spellcheck_artifact }} name: ${{ env.spellcheck_artifact }} @@ -462,7 +462,7 @@ jobs: # description: | # Calls a trusted shared workflow that temporarily elevates the caller's privileges # to write a comment in the PR. - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: path: ${{ env.artifacts_dir }}/${{ env.spellcheck_artifact }} name: ${{ env.spellcheck_artifact }} diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index c7fecd8..30a8096 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: stable check-latest: true @@ -83,7 +83,7 @@ jobs: go_version: ['oldstable', 'stable' ] steps: - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: '${{ matrix.go_version }}' check-latest: true diff --git a/.github/workflows/pr-comment.yml b/.github/workflows/pr-comment.yml index 5509847..d9b03a2 100644 --- a/.github/workflows/pr-comment.yml +++ b/.github/workflows/pr-comment.yml @@ -101,7 +101,7 @@ jobs: - name: Download message artifact if: ${{ steps.check_pr.outputs.proceed == 'true'}} id: download - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: run-id: "${{ inputs.run_id }}" repository: "${{ env.TARGET }}" @@ -125,7 +125,7 @@ jobs: - name: Find previous PR comment if: ${{ steps.check_pr.outputs.proceed == 'true'}} - uses: peter-evans/find-comment@v3 + uses: peter-evans/find-comment@v4 id: find_comment with: repository: ${{ inputs.target_repo }} @@ -136,7 +136,7 @@ jobs: - name: Create or update PR comment if: ${{ steps.check_pr.outputs.proceed == 'true'}} - uses: peter-evans/create-or-update-comment@v4 + uses: peter-evans/create-or-update-comment@v5 with: issue-number: ${{ inputs.pr_number }} comment-id: ${{ steps.find_comment.outputs.comment-id }}