Skip to content

Commit 46aaab1

Browse files
chore(deps): bump the all-actions group across 1 directory with 6 updates (#2091)
Bumps the all-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `6` | `7` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.3.1` | `3.4.0` | Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `goreleaser/goreleaser-action` from 6 to 7 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](goreleaser/goreleaser-action@v6...v7) Updates `pypa/cibuildwheel` from 3.3.1 to 3.4.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.3.1...v3.4.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: goreleaser/goreleaser-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor 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 e4110d2 commit 46aaab1

2 files changed

Lines changed: 20 additions & 20 deletions

File tree

.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@v6
82+
uses: actions/upload-artifact@v7
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@v6
109+
uses: actions/upload-artifact@v7
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@v6
136+
uses: actions/upload-artifact@v7
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@v7
177+
uses: actions/download-artifact@v8
178178
with:
179179
name: coverage-out
180180
path: merge
181181

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

.github/workflows/release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,28 @@ jobs:
2121
with:
2222
go-version: 'stable'
2323
- name: Login to Docker Hub
24-
uses: docker/login-action@v3
24+
uses: docker/login-action@v4
2525
with:
2626
username: ${{ secrets.DOCKERIO_USERNAME }}
2727
password: ${{ secrets.DOCKERIO_TOKEN }}
2828
- name: Login to GitHub Container Registry
29-
uses: docker/login-action@v3
29+
uses: docker/login-action@v4
3030
with:
3131
registry: ghcr.io
3232
username: ${{ github.actor }}
3333
password: ${{ secrets.GITHUB_TOKEN }}
3434
- name: Set up Docker Buildx
35-
uses: docker/setup-buildx-action@v3
35+
uses: docker/setup-buildx-action@v4
3636
- name: Run GoReleaser
37-
uses: goreleaser/goreleaser-action@v6
37+
uses: goreleaser/goreleaser-action@v7
3838
with:
3939
distribution: goreleaser
4040
version: "~> v2"
4141
args: release --clean
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
- name: upload gobin
45-
uses: actions/upload-artifact@v6
45+
uses: actions/upload-artifact@v7
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@v7
62+
uses: actions/download-artifact@v8
6363
with:
6464
name: gobin_${{ github.event.release.tag_name }}
6565
path: dist/
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
python-version: '3.11'
8282
- name: Build wheels
83-
uses: pypa/cibuildwheel@v3.3.1
83+
uses: pypa/cibuildwheel@v3.4.0
8484
env:
8585
CIBW_ARCHS_MACOS: arm64, x86_64
8686
CIBW_ARCHS_LINUX: auto64
@@ -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@v6
96+
uses: actions/upload-artifact@v7
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@v7
110+
uses: actions/download-artifact@v8
111111
with:
112112
pattern: pypi_${{ github.event.release.tag_name }}_*
113113
merge-multiple: true
@@ -129,7 +129,7 @@ jobs:
129129
steps:
130130
- uses: actions/checkout@v6
131131
- name: Set up Docker Buildx
132-
uses: docker/setup-buildx-action@v3
132+
uses: docker/setup-buildx-action@v4
133133
- name: Cache Docker layers
134134
uses: actions/cache@v5
135135
id: cache
@@ -139,7 +139,7 @@ jobs:
139139
restore-keys: |
140140
${{ runner.os }}-buildx-
141141
- name: Login to GitHub Container Registry
142-
uses: docker/login-action@v3
142+
uses: docker/login-action@v4
143143
with:
144144
registry: ghcr.io
145145
username: ${{ github.actor }}
@@ -165,7 +165,7 @@ jobs:
165165
steps:
166166
- uses: actions/checkout@v6
167167
- name: Set up Docker Buildx
168-
uses: docker/setup-buildx-action@v3
168+
uses: docker/setup-buildx-action@v4
169169
- name: Cache Docker layers
170170
uses: actions/cache@v5
171171
id: cache
@@ -175,7 +175,7 @@ jobs:
175175
restore-keys: |
176176
${{ runner.os }}-buildx-
177177
- name: Get gobin
178-
uses: actions/download-artifact@v7
178+
uses: actions/download-artifact@v8
179179
with:
180180
name: gobin_${{ github.event.release.tag_name }}
181181
path: dist/
@@ -185,7 +185,7 @@ jobs:
185185
mv dist/envd_linux_amd64_v1/envd /usr/local/bin/envd
186186
chmod +x /usr/local/bin/envd
187187
- name: Login to GitHub Container Registry
188-
uses: docker/login-action@v3
188+
uses: docker/login-action@v4
189189
with:
190190
registry: ghcr.io
191191
username: ${{ github.actor }}

0 commit comments

Comments
 (0)