Skip to content

Commit 242f3c0

Browse files
authored
Merge pull request #153 from hopr-framework/dependabot/github_actions/actions/checkout-7
Bump actions/checkout from 6 to 7
2 parents 7d08b5b + 6888ca7 commit 242f3c0

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
container:
6161
image: python:3.14.5-slim-trixie
6262
steps:
63-
- uses: actions/checkout@v6
63+
- uses: actions/checkout@v7
6464
# with:
6565
# fetch-depth: 0
6666
# fetch-tags: true
@@ -87,7 +87,7 @@ jobs:
8787
apt-get update
8888
apt-get install -y --no-install-recommends git git-lfs
8989
# This does not strictly require LFS but we want the checkout before the compatibility matrix
90-
- uses: actions/checkout@v6
90+
- uses: actions/checkout@v7
9191
- uses: ./.github/actions/setup
9292
# with:
9393
# minimal: 'false'
@@ -104,7 +104,7 @@ jobs:
104104
container:
105105
image: python:3.14.5-slim-trixie
106106
steps:
107-
- uses: actions/checkout@v6
107+
- uses: actions/checkout@v7
108108
# with:
109109
# fetch-depth: 0
110110
# fetch-tags: true
@@ -122,7 +122,7 @@ jobs:
122122
name: Lint / gitleaks
123123
runs-on: ubuntu-latest
124124
steps:
125-
- uses: actions/checkout@v6
125+
- uses: actions/checkout@v7
126126
- uses: pre-commit/[email protected]
127127
with:
128128
extra_args: gitleaks
@@ -131,7 +131,7 @@ jobs:
131131
name: Lint / pre-commit
132132
runs-on: ubuntu-latest
133133
steps:
134-
- uses: actions/checkout@v6
134+
- uses: actions/checkout@v7
135135
- uses: pre-commit/[email protected]
136136
with:
137137
extra_args: check-merge-conflict
@@ -168,7 +168,7 @@ jobs:
168168
run: |
169169
apt-get update
170170
apt-get install -y --no-install-recommends git git-lfs
171-
- uses: actions/checkout@v6
171+
- uses: actions/checkout@v7
172172
# - uses: nschloe/action-cached-lfs-checkout@v1
173173
with:
174174
# fetch-depth: 0
@@ -198,7 +198,7 @@ jobs:
198198
run: |
199199
apt-get update
200200
apt-get install -y --no-install-recommends git git-lfs
201-
- uses: actions/checkout@v6
201+
- uses: actions/checkout@v7
202202
# - uses: nschloe/action-cached-lfs-checkout@v1
203203
with:
204204
# fetch-depth: 0
@@ -272,7 +272,7 @@ jobs:
272272
run: |
273273
apt-get update
274274
apt-get install -y --no-install-recommends git git-lfs
275-
- uses: actions/checkout@v6
275+
- uses: actions/checkout@v7
276276
with:
277277
# # Remove Git LFS on purpose to check the LFS downloader
278278
lfs: false
@@ -304,7 +304,7 @@ jobs:
304304
username: ${{ github.repository_owner }}
305305
password: ${{ secrets.GITHUB_TOKEN }}
306306
steps:
307-
- uses: actions/checkout@v6
307+
- uses: actions/checkout@v7
308308
# with: Reduce Git LFS bandwidth
309309
# fetch-depth: 0
310310
# fetch-tags: true
@@ -326,7 +326,7 @@ jobs:
326326
runs-on: ubuntu-latest
327327
needs: [examples, healthcheck]
328328
steps:
329-
- uses: actions/checkout@v6
329+
- uses: actions/checkout@v7
330330
- uses: actions/setup-python@v6
331331
with:
332332
python-version: 3.x
@@ -353,7 +353,7 @@ jobs:
353353
container:
354354
image: python:3.14.5-slim-trixie
355355
steps:
356-
- uses: actions/checkout@v6
356+
- uses: actions/checkout@v7
357357
# with:
358358
# fetch-depth: 0
359359
# fetch-tags: true

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
url: ${{ steps.deployment.outputs.page_url }}
6262
if: github.event.repository.fork == false
6363
steps:
64-
- uses: actions/checkout@v6
64+
- uses: actions/checkout@v7
6565
- uses: actions/setup-python@v6
6666
with:
6767
python-version: 3.x

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
name: Build distribution
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v6
54+
- uses: actions/checkout@v7
5555
with:
5656
persist-credentials: false
5757

0 commit comments

Comments
 (0)