Skip to content

Commit 4989ed3

Browse files
ci: bump the all-actions group across 1 directory with 3 updates
Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [marocchino/sticky-pull-request-comment](https://github.com/marocchino/sticky-pull-request-comment) and [ad-m/github-push-action](https://github.com/ad-m/github-push-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 `marocchino/sticky-pull-request-comment` from 3.0.4 to 3.0.5 - [Release notes](https://github.com/marocchino/sticky-pull-request-comment/releases) - [Commits](marocchino/sticky-pull-request-comment@0ea0beb...5770ad5) Updates `ad-m/github-push-action` from 1.1.0 to 1.3.0 - [Release notes](https://github.com/ad-m/github-push-action/releases) - [Commits](ad-m/github-push-action@4cc7477...881a632) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: marocchino/sticky-pull-request-comment dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: ad-m/github-push-action dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 58104cb commit 4989ed3

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/bandit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04
1010

1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313

1414
- name: Run bandit
1515
uses: VCTLabs/bandit-report-artifacts@v3

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
2727

2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/coverage.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout Project
32-
uses: actions/checkout@v6
32+
uses: actions/checkout@v7
3333
with:
3434
# We need to fetch with a depth of 2 for pull_request so we can do HEAD^2
3535
fetch-depth: 2
@@ -71,7 +71,7 @@ jobs:
7171
base_cov: ${{ steps.get_base.outputs.base_cov }}
7272

7373
steps:
74-
- uses: actions/checkout@v6
74+
- uses: actions/checkout@v7
7575
with:
7676
ref: badges
7777
path: badges
@@ -144,7 +144,7 @@ jobs:
144144
PIP_DOWNLOAD_CACHE: ${{ github.workspace }}/../.pip_download_cache
145145

146146
steps:
147-
- uses: actions/checkout@v6
147+
- uses: actions/checkout@v7
148148
with:
149149
fetch-depth: 0
150150

@@ -201,7 +201,7 @@ jobs:
201201
output: 'both'
202202

203203
- name: Add Coverage PR Comment
204-
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
204+
uses: marocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5
205205
if: github.event_name == 'pull_request' && (github.event.pull_request.author_association == 'MEMBER' || github.actor == github.repository_owner)
206206
with:
207207
header: coverage
@@ -297,7 +297,7 @@ jobs:
297297
fi
298298
299299
- name: Comment PR with test coverage delta
300-
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
300+
uses: marocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5
301301
if: env.HAVE_BASE_COVERAGE == 'true' && (github.event.pull_request.author_association == 'MEMBER' || github.actor == github.repository_owner)
302302
with:
303303
header: delta
@@ -327,7 +327,7 @@ jobs:
327327
markdown: ${{ steps.url.outputs.markdown }}
328328

329329
steps:
330-
- uses: actions/checkout@v6
330+
- uses: actions/checkout@v7
331331
with:
332332
ref: badges
333333
path: badges
@@ -369,7 +369,7 @@ jobs:
369369
git commit -m "Add/Update badge" || true
370370
371371
- name: Push badge commit
372-
uses: ad-m/github-push-action@4cc74773234f74829a8c21bc4d69dd4be9cfa599 # v1.1.0
372+
uses: ad-m/github-push-action@881a6320fdb16eb5318c5054f31c218aec2b324c # v1.3.0
373373
with:
374374
github_token: ${{ secrets.GITHUB_TOKEN }}
375375
branch: badges

.github/workflows/pylint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
path: ${{ steps.analyze.outputs.path }}
2424

2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
with:
2828
fetch-depth: 0
2929

@@ -86,7 +86,7 @@ jobs:
8686
if: ${{ github.event_name == 'push' }}
8787

8888
steps:
89-
- uses: actions/checkout@v6
89+
- uses: actions/checkout@v7
9090
with:
9191
ref: badges
9292
path: badges
@@ -116,7 +116,7 @@ jobs:
116116
git commit -m "Add/Update badge" || true
117117
118118
- name: Push badge commit
119-
uses: ad-m/github-push-action@4cc74773234f74829a8c21bc4d69dd4be9cfa599 # v1.1.0
119+
uses: ad-m/github-push-action@881a6320fdb16eb5318c5054f31c218aec2b324c # v1.3.0
120120
with:
121121
github_token: ${{ secrets.GITHUB_TOKEN }}
122122
branch: badges

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
git config --global core.autocrlf false
3131
git config --global core.eol lf
3232
33-
- uses: actions/checkout@v6
33+
- uses: actions/checkout@v7
3434
with:
3535
fetch-depth: 0
3636

@@ -67,7 +67,7 @@ jobs:
6767
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
6868
echo ${{ env.VERSION }}
6969
70-
- uses: actions/checkout@v6
70+
- uses: actions/checkout@v7
7171
with:
7272
fetch-depth: 0
7373

@@ -103,7 +103,7 @@ jobs:
103103
runs-on: ubuntu-22.04
104104

105105
steps:
106-
- uses: actions/checkout@v6
106+
- uses: actions/checkout@v7
107107
with:
108108
fetch-depth: 0
109109

0 commit comments

Comments
 (0)