Skip to content

Commit 4472dd7

Browse files
build(deps): bump actions/checkout from 6 to 7 (#268)
Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7254632 commit 4472dd7

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/build-image.yml

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

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727

2828
- name: Log in to the Container registry
2929
uses: docker/login-action@v4

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
should_run: ${{ steps.set-matrix.outputs.should_run }}
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v6
28+
uses: actions/checkout@v7
2929
with:
3030
fetch-depth: 0
3131

@@ -56,13 +56,13 @@ jobs:
5656
cancel-in-progress: true
5757
steps:
5858
- name: Checkout VUP
59-
uses: actions/checkout@v6
59+
uses: actions/checkout@v7
6060
with:
6161
path: vup
6262
fetch-depth: 0
6363

6464
- name: Checkout void-packages
65-
uses: actions/checkout@v6
65+
uses: actions/checkout@v7
6666
with:
6767
repository: void-linux/void-packages
6868
path: void-packages
@@ -153,7 +153,7 @@ jobs:
153153
cache-image: false
154154

155155
- name: Checkout VUP
156-
uses: actions/checkout@v6
156+
uses: actions/checkout@v7
157157
with:
158158
path: vup
159159

@@ -244,7 +244,7 @@ jobs:
244244
contents: read
245245
steps:
246246
- name: Checkout
247-
uses: actions/checkout@v6
247+
uses: actions/checkout@v7
248248

249249
- name: Download Reports
250250
uses: actions/download-artifact@v8
@@ -275,7 +275,7 @@ jobs:
275275
cancel-in-progress: false
276276
steps:
277277
- name: Checkout VUP
278-
uses: actions/checkout@v6
278+
uses: actions/checkout@v7
279279

280280
- name: Generate Global Index
281281
run: |

.github/workflows/pr-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
should_run: ${{ steps.set-matrix.outputs.should_run }}
2222
steps:
2323
- name: Checkout (PR code for diff)
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v7
2525
with:
2626
ref: ${{ github.event.pull_request.head.sha }}
2727
fetch-depth: 0
@@ -63,14 +63,14 @@ jobs:
6363

6464
steps:
6565
- name: Checkout VUP
66-
uses: actions/checkout@v6
66+
uses: actions/checkout@v7
6767
with:
6868
ref: ${{ github.event.pull_request.head.sha }}
6969
path: vup
7070
fetch-depth: 0
7171

7272
- name: Checkout void-packages (Build System)
73-
uses: actions/checkout@v6
73+
uses: actions/checkout@v7
7474
with:
7575
repository: void-linux/void-packages
7676
path: void-packages

.github/workflows/template-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout PR
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717
with:
1818
path: pr
1919
fetch-depth: 0
2020

2121
- name: Checkout Base Scripts
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323
with:
2424
ref: ${{ github.event.pull_request.base.sha }}
2525
path: base

.github/workflows/vup-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
private-key: ${{ secrets.VUP_BOT_PRIVATE_KEY }}
2424

2525
- name: Checkout VUP (for scripts)
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727

2828
- name: Download Build Reports
2929
uses: actions/download-artifact@v8

.github/workflows/vuru-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
private-key: ${{ secrets.VUP_BOT_PRIVATE_KEY }}
2222

2323
- name: Checkout Source
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v7
2525
with:
2626
path: vup
2727
fetch-depth: 0 # Needed for push

0 commit comments

Comments
 (0)