Skip to content

Commit 9fb7a9a

Browse files
Bump the development-dependencies group across 1 directory with 8 updates
Bumps the development-dependencies group with 8 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.54.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8` | `9` | | [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](tj-actions/changed-files@v46...v47) Updates `rojopolis/spellcheck-github-actions` from 0.51.0 to 0.54.0 - [Release notes](https://github.com/rojopolis/spellcheck-github-actions/releases) - [Changelog](https://github.com/rojopolis/spellcheck-github-actions/blob/master/CHANGELOG.md) - [Commits](rojopolis/spellcheck-github-actions@0.51.0...0.54.0) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `peter-evans/find-comment` from 3 to 4 - [Release notes](https://github.com/peter-evans/find-comment/releases) - [Commits](peter-evans/find-comment@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](peter-evans/create-or-update-comment@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.54.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: golangci/golangci-lint-action dependency-version: '9' 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] <[email protected]>
1 parent df466a8 commit 9fb7a9a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/doc-update.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
ref: ${{ github.event.pull_request.head.sha }}
6262

6363
- name: Get changed markdown files
64-
uses: tj-actions/changed-files@v46
64+
uses: tj-actions/changed-files@v47
6565
id: changed-markdown-files
6666
with:
6767
files: '**/*.md'
@@ -176,7 +176,7 @@ jobs:
176176
cp ci-tools/${{ env.spellcheck_dict }} ${{ env.spellcheck_dict }}
177177
178178
- name: Spellcheck
179-
uses: rojopolis/spellcheck-github-actions@0.51.0
179+
uses: rojopolis/spellcheck-github-actions@0.54.0
180180
continue-on-error: true
181181
id: spellcheck
182182
with:
@@ -258,7 +258,7 @@ jobs:
258258
echo "reactions=hooray" >> "$GITHUB_OUTPUT"
259259
260260
- name: Upload comment as artifact
261-
uses: actions/upload-artifact@v4
261+
uses: actions/upload-artifact@v5
262262
with:
263263
path: ${{ env.artifacts_dir }}/${{ env.markdown_artifact }}
264264
name: ${{ env.markdown_artifact }}
@@ -326,7 +326,7 @@ jobs:
326326
echo "> ℹ️ INFO: we use [avtodev/markdown-lint action](https://github.com/avto-dev/markdown-lint)" >> $GITHUB_STEP_SUMMARY
327327
328328
- name: Upload comment as artifact
329-
uses: actions/upload-artifact@v4
329+
uses: actions/upload-artifact@v5
330330
with:
331331
path: ${{ env.artifacts_dir }}/${{ env.markdown_artifact }}
332332
name: ${{ env.markdown_artifact }}
@@ -393,7 +393,7 @@ jobs:
393393
echo "reactions=hooray" >> "$GITHUB_OUTPUT"
394394
395395
- name: Upload comment as artifact
396-
uses: actions/upload-artifact@v4
396+
uses: actions/upload-artifact@v5
397397
with:
398398
path: ${{ env.artifacts_dir }}/${{ env.spellcheck_artifact }}
399399
name: ${{ env.spellcheck_artifact }}
@@ -485,7 +485,7 @@ jobs:
485485
# description: |
486486
# Calls a trusted shared workflow that temporarily elevates the caller's privileges
487487
# to write a comment in the PR.
488-
uses: actions/upload-artifact@v4
488+
uses: actions/upload-artifact@v5
489489
with:
490490
path: ${{ env.artifacts_dir }}/${{ env.spellcheck_artifact }}
491491
name: ${{ env.spellcheck_artifact }}

.github/workflows/go-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v5
42-
- uses: actions/setup-go@v5
42+
- uses: actions/setup-go@v6
4343
with:
4444
go-version: stable
4545
check-latest: true
4646
cache: true
4747
- name: golangci-lint
48-
uses: golangci/golangci-lint-action@v8
48+
uses: golangci/golangci-lint-action@v9
4949
with:
5050
version: latest
5151
only-new-issues: true
@@ -83,7 +83,7 @@ jobs:
8383
go_version: ['oldstable', 'stable' ]
8484

8585
steps:
86-
- uses: actions/setup-go@v5
86+
- uses: actions/setup-go@v6
8787
with:
8888
go-version: '${{ matrix.go_version }}'
8989
check-latest: true

.github/workflows/pr-comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Download message artifact
102102
if: ${{ steps.check_pr.outputs.proceed == 'true'}}
103103
id: download
104-
uses: actions/download-artifact@v5
104+
uses: actions/download-artifact@v6
105105
with:
106106
run-id: "${{ inputs.run_id }}"
107107
repository: "${{ env.TARGET }}"
@@ -125,7 +125,7 @@ jobs:
125125
126126
- name: Find previous PR comment
127127
if: ${{ steps.check_pr.outputs.proceed == 'true'}}
128-
uses: peter-evans/find-comment@v3
128+
uses: peter-evans/find-comment@v4
129129
id: find_comment
130130
with:
131131
repository: ${{ inputs.target_repo }}
@@ -136,7 +136,7 @@ jobs:
136136

137137
- name: Create or update PR comment
138138
if: ${{ steps.check_pr.outputs.proceed == 'true'}}
139-
uses: peter-evans/create-or-update-comment@v4
139+
uses: peter-evans/create-or-update-comment@v5
140140
with:
141141
issue-number: ${{ inputs.pr_number }}
142142
comment-id: ${{ steps.find_comment.outputs.comment-id }}

0 commit comments

Comments
 (0)