Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/doc-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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.52.0
continue-on-error: true
id: spellcheck
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
Loading