Skip to content

Commit 3615173

Browse files
Bump the gha-dependencies group across 1 directory with 7 updates
Bumps the gha-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | 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/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) 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 `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `codecov/codecov-action` from 5 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e67cd28 commit 3615173

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ jobs:
5454

5555
- name: Log in to Container Registry
5656
if: ${{ inputs.push }}
57-
uses: docker/login-action@v3
57+
uses: docker/login-action@v4
5858
with:
5959
registry: ${{ env.REGISTRY }}
6060
username: ${{ github.actor }}
6161
password: ${{ secrets.GITHUB_TOKEN }}
6262

6363
- name: Extract Docker metadata
6464
id: meta
65-
uses: docker/metadata-action@v5
65+
uses: docker/metadata-action@v6
6666
with:
6767
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6868
tags: |
@@ -71,10 +71,10 @@ jobs:
7171
type=raw,value=latest,enable=${{ inputs.venue == 'ops' }}
7272
7373
- name: Set up Docker Buildx
74-
uses: docker/setup-buildx-action@v3
74+
uses: docker/setup-buildx-action@v4
7575

7676
- name: Build and push Docker image
77-
uses: docker/build-push-action@v6
77+
uses: docker/build-push-action@v7
7878
with:
7979
context: .
8080
file: Dockerfile

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
uv run pytest --cov=stitchee --cov-report=xml tests/integration
5353
5454
- name: Upload coverage
55-
uses: codecov/codecov-action@v5
55+
uses: codecov/codecov-action@v6
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
verbose: true

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Upload Snyk results to GitHub
5151
if: always()
52-
uses: github/codeql-action/upload-sarif@v3
52+
uses: github/codeql-action/upload-sarif@v4
5353
with:
5454
sarif_file: snyk.sarif
5555
continue-on-error: true

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: uv run pytest --cov=stitchee --cov-report=xml tests/unit
4242

4343
- name: Upload coverage reports to Codecov
44-
uses: codecov/codecov-action@v5
44+
uses: codecov/codecov-action@v6
4545
with:
4646
token: ${{ secrets.CODECOV_TOKEN }}
4747
verbose: true

.github/workflows/version-and-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
run: uv build
151151

152152
- name: Upload Python artifact
153-
uses: actions/upload-artifact@v6
153+
uses: actions/upload-artifact@v7
154154
with:
155155
name: python-artifact
156156
path: dist/*

0 commit comments

Comments
 (0)