Skip to content

Commit f24fe82

Browse files
chore(deps): bump actions/checkout from 6 to 7 (#3)
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 900c88d commit f24fe82

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/changelog-generator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') ||
2424
(github.event_name == 'pull_request' && github.event.pull_request.merged == true)
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
with:
2828
fetch-depth: 0
2929

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Lint
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v7
2121

2222
- name: Set up Python
2323
uses: actions/setup-python@v6
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
needs: lint
4444
steps:
45-
- uses: actions/checkout@v6
45+
- uses: actions/checkout@v7
4646

4747
- name: Run action with default inputs against fixture
4848
id: ci
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: ubuntu-latest
8181
needs: lint
8282
steps:
83-
- uses: actions/checkout@v6
83+
- uses: actions/checkout@v7
8484

8585
- name: Run action with tests skipped and custom tag
8686
id: ci
@@ -120,7 +120,7 @@ jobs:
120120
ports:
121121
- 5001:5000
122122
steps:
123-
- uses: actions/checkout@v6
123+
- uses: actions/checkout@v7
124124

125125
- name: Run action with caller-managed registry, coverage threshold, and build args
126126
id: ci
@@ -176,7 +176,7 @@ jobs:
176176
runs-on: ubuntu-latest
177177
needs: lint
178178
steps:
179-
- uses: actions/checkout@v6
179+
- uses: actions/checkout@v7
180180

181181
- name: Run action against a Dockerfile that fails
182182
id: ci

.github/workflows/contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
2525

2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
token: ${{ secrets.PAT_TOKEN }}
3030
fetch-depth: 0

.github/workflows/gitlab-mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout GitHub Repository
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131
with:
3232
fetch-depth: 0
3333

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: "Check-out"
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919
with:
2020
fetch-depth: 0
2121
token: ${{ secrets.PAT_TOKEN }}

.github/workflows/use-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
github.event_name == 'workflow_dispatch' ||
2424
github.event.workflow_run.conclusion == 'success'
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727

2828
- name: Run released action against fixture (defaults)
2929
id: ci
@@ -68,7 +68,7 @@ jobs:
6868
ports:
6969
- 5001:5000
7070
steps:
71-
- uses: actions/checkout@v6
71+
- uses: actions/checkout@v7
7272

7373
- name: Run released action with caller-managed registry
7474
id: ci

0 commit comments

Comments
 (0)