Skip to content

Commit 0127bb4

Browse files
chore(deps): bump the all-actions group with 4 updates (#2073)
Bumps the all-actions group with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact), [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) and [actions/cache](https://github.com/actions/cache). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v7...v8) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent eb76188 commit 0127bb4

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Test
8080
run: make test
8181
- name: Upload coverage report
82-
uses: actions/upload-artifact@v5
82+
uses: actions/upload-artifact@v6
8383
with:
8484
name: coverage-out
8585
path: coverage.out
@@ -106,7 +106,7 @@ jobs:
106106
env:
107107
GIT_LATEST_TAG: ${{ steps.get-latest-tag.outputs.tag }}
108108
- name: Upload coverage report
109-
uses: actions/upload-artifact@v5
109+
uses: actions/upload-artifact@v6
110110
with:
111111
name: e2e-cli-coverage-out
112112
path: e2e-cli-coverage.out
@@ -133,7 +133,7 @@ jobs:
133133
env:
134134
GIT_LATEST_TAG: ${{ steps.get-latest-tag.outputs.tag }}
135135
- name: Upload coverage report
136-
uses: actions/upload-artifact@v5
136+
uses: actions/upload-artifact@v6
137137
with:
138138
name: e2e-lang-coverage-out
139139
path: e2e-lang-coverage.out
@@ -174,18 +174,18 @@ jobs:
174174
run: |
175175
go install github.com/mattn/goveralls@latest
176176
- name: Get coverage report
177-
uses: actions/download-artifact@v6
177+
uses: actions/download-artifact@v7
178178
with:
179179
name: coverage-out
180180
path: merge
181181

182182
- name: Get cli e2e coverage report
183-
uses: actions/download-artifact@v6
183+
uses: actions/download-artifact@v7
184184
with:
185185
name: e2e-cli-coverage-out
186186
path: merge
187187
- name: Get language e2e coverage report
188-
uses: actions/download-artifact@v6
188+
uses: actions/download-artifact@v7
189189
with:
190190
name: e2e-lang-coverage-out
191191
path: merge

.github/workflows/changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- run: git fetch --prune --prune-tags
1818
- run: git tag -l 'v*'
1919
- run: ./hack/changelog.sh > CHANGELOG.md
20-
- uses: peter-evans/create-pull-request@v7
20+
- uses: peter-evans/create-pull-request@v8
2121
with:
2222
title: 'docs: updated CHANGELOG.md'
2323
commit-message: 'docs: updated CHANGELOG.md'

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
- name: upload gobin
45-
uses: actions/upload-artifact@v5
45+
uses: actions/upload-artifact@v6
4646
with:
4747
name: gobin_${{ github.event.release.tag_name }}
4848
retention-days: 1
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v6
6161
- name: Get gobin
62-
uses: actions/download-artifact@v6
62+
uses: actions/download-artifact@v7
6363
with:
6464
name: gobin_${{ github.event.release.tag_name }}
6565
path: dist/
@@ -93,7 +93,7 @@ jobs:
9393
python setup.py sdist
9494
mv dist/*.tar.gz wheelhouse/
9595
- name: Upload artifacts
96-
uses: actions/upload-artifact@v5
96+
uses: actions/upload-artifact@v6
9797
with:
9898
name: pypi_${{ github.event.release.tag_name }}_${{ matrix.os }}
9999
path: wheelhouse/
@@ -107,7 +107,7 @@ jobs:
107107
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
108108
steps:
109109
- name: Download artifacts
110-
uses: actions/download-artifact@v6
110+
uses: actions/download-artifact@v7
111111
with:
112112
pattern: pypi_${{ github.event.release.tag_name }}_*
113113
merge-multiple: true
@@ -131,7 +131,7 @@ jobs:
131131
- name: Set up Docker Buildx
132132
uses: docker/setup-buildx-action@v3
133133
- name: Cache Docker layers
134-
uses: actions/cache@v4
134+
uses: actions/cache@v5
135135
id: cache
136136
with:
137137
path: /tmp/.buildx-cache
@@ -167,15 +167,15 @@ jobs:
167167
- name: Set up Docker Buildx
168168
uses: docker/setup-buildx-action@v3
169169
- name: Cache Docker layers
170-
uses: actions/cache@v4
170+
uses: actions/cache@v5
171171
id: cache
172172
with:
173173
path: /tmp/.buildx-cache
174174
key: ${{ runner.os }}-buildx-${{ github.sha }}
175175
restore-keys: |
176176
${{ runner.os }}-buildx-
177177
- name: Get gobin
178-
uses: actions/download-artifact@v6
178+
uses: actions/download-artifact@v7
179179
with:
180180
name: gobin_${{ github.event.release.tag_name }}
181181
path: dist/

0 commit comments

Comments
 (0)