Skip to content

Commit 1aadb78

Browse files
Bump the gha-dependencies group across 1 directory with 4 updates
Bumps the gha-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v7) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v6...v7) Updates `github/codeql-action` from 4 to 4.37.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v4...v4.37.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: github/codeql-action dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 97a418e commit 1aadb78

7 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/auto-bump-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@v7
2828
with:
2929
fetch-depth: 0
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@v6
32+
uses: actions/setup-python@v7
3333
with:
3434
python-version: ${{ env.PYTHON_VERSION }}
3535

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout code
53-
uses: actions/checkout@v6
53+
uses: actions/checkout@v7
5454

5555
- name: Log in to Container Registry
5656
if: ${{ inputs.push }}

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- name: Retrieve repository
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v6
33+
uses: actions/setup-python@v7
3434
with:
3535
python-version: ${{ env.PYTHON_VERSION }}
3636

@@ -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@v6
55+
uses: codecov/codecov-action@v7
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
verbose: true

.github/workflows/pr-checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v6
25+
uses: actions/setup-python@v7
2626
with:
2727
python-version: ${{ env.PYTHON_VERSION }}
2828

@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Upload Snyk results to GitHub
5151
if: always()
52-
uses: github/codeql-action/upload-sarif@v4
52+
uses: github/codeql-action/upload-sarif@v4.37.3
5353
with:
5454
sarif_file: snyk.sarif
5555
continue-on-error: true
@@ -60,10 +60,10 @@ jobs:
6060

6161
steps:
6262
- name: Checkout code
63-
uses: actions/checkout@v6
63+
uses: actions/checkout@v7
6464

6565
- name: Set up Python
66-
uses: actions/setup-python@v6
66+
uses: actions/setup-python@v7
6767
with:
6868
python-version: ${{ env.PYTHON_VERSION }}
6969

@@ -91,7 +91,7 @@ jobs:
9191

9292
steps:
9393
- name: Checkout code
94-
uses: actions/checkout@v6
94+
uses: actions/checkout@v7
9595
with:
9696
fetch-depth: 0
9797

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
venue: ${{ steps.version.outputs.venue }}
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131
with:
3232
ref: ${{ inputs.release_tag || github.ref }}
3333
fetch-depth: 0 # Fetch all history for accurate versioning/changelogs
3434

3535
- name: Set up Python
36-
uses: actions/setup-python@v6
36+
uses: actions/setup-python@v7
3737
with:
3838
python-version: ${{ env.PYTHON_VERSION }}
3939

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- name: Retrieve repository
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v7
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v6
27+
uses: actions/setup-python@v7
2828
with:
2929
python-version: ${{ env.PYTHON_VERSION }}
3030

@@ -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@v6
44+
uses: codecov/codecov-action@v7
4545
with:
4646
token: ${{ secrets.CODECOV_TOKEN }}
4747
verbose: true

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646

4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v6
49+
uses: actions/checkout@v7
5050
with:
5151
fetch-depth: 0 # Need history for auto-bump script
5252

5353
- name: Set up Python
54-
uses: actions/setup-python@v6
54+
uses: actions/setup-python@v7
5555
with:
5656
python-version: ${{ env.PYTHON_VERSION }}
5757

@@ -172,10 +172,10 @@ jobs:
172172
timeout-minutes: 10
173173
steps:
174174
- name: Checkout code
175-
uses: actions/checkout@v6
175+
uses: actions/checkout@v7
176176

177177
- name: Set up Python
178-
uses: actions/setup-python@v6
178+
uses: actions/setup-python@v7
179179
with:
180180
python-version: ${{ env.PYTHON_VERSION }}
181181

0 commit comments

Comments
 (0)