Skip to content

Commit c54bca0

Browse files
chore(deps): Bump actions/checkout from 6.0.3 to 7.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.3...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d3411b6 commit c54bca0

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
steps:
20-
- uses: actions/checkout@v6.0.3
20+
- uses: actions/checkout@v7.0.0
2121
- name: Set up Python 3.11
2222
uses: actions/setup-python@v6.2.0
2323
with:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest-8-cores
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v6.0.3
33+
uses: actions/checkout@v7.0.0
3434
- name: Set up Python
3535
uses: actions/setup-python@v6.2.0
3636
with:

.github/workflows/generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6.0.3
18+
- uses: actions/checkout@v7.0.0
1919
with:
2020
ref: ${{ github.event.pull_request.head.ref }}
2121
- name: Set up Python

.github/workflows/make-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: make-release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v6.0.3
13+
- uses: actions/checkout@v7.0.0
1414
- uses: actions/setup-python@v6.2.0
1515
with:
1616
python-version: '3.x'

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
mypy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6.0.3
14+
- uses: actions/checkout@v7.0.0
1515

1616
- name: Set up Python
1717
uses: actions/setup-python@v6.2.0

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
ruff:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6.0.3
14+
- uses: actions/checkout@v7.0.0
1515

1616
- name: Set up Python
1717
uses: actions/setup-python@v6.2.0

.github/workflows/update-spec-for-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
app-id: ${{ secrets.GH_ORG_APP_ID }}
2323
private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }}
2424
owner: ${{ github.repository_owner }}
25-
- uses: actions/checkout@v6.0.3
25+
- uses: actions/checkout@v7.0.0
2626
- name: Set up Python
2727
uses: actions/setup-python@v6.2.0
2828
with:
@@ -53,7 +53,7 @@ jobs:
5353
echo "No files changed, proceeding";
5454
fi
5555
# Checkout the docs repo since we will want to update the files there.
56-
- uses: actions/checkout@v6.0.3
56+
- uses: actions/checkout@v7.0.0
5757
with:
5858
repository: 'kittycad/website'
5959
path: 'docs'

0 commit comments

Comments
 (0)