Skip to content

Commit 3e0b5c7

Browse files
chore(deps): bump actions/checkout from 3 to 4 (#54)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9692f1e commit 3e0b5c7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/cicd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Check out repository code
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343

4444
# Setup Python (faster than using Python container)
4545
- name: Setup Python
@@ -92,7 +92,7 @@ jobs:
9292
- 5432:5432
9393
steps:
9494
- name: Check out repository code
95-
uses: actions/checkout@v3
95+
uses: actions/checkout@v4
9696
- name: Setup Python
9797
uses: actions/setup-python@v4
9898
with:
@@ -119,7 +119,7 @@ jobs:
119119
test-docs:
120120
runs-on: ubuntu-latest
121121
steps:
122-
- uses: actions/checkout@v3
122+
- uses: actions/checkout@v4
123123
- name: Setup Python
124124
uses: actions/setup-python@v4
125125
with:

.github/workflows/packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
packages: write
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Log in to the Container registry
2020
uses: docker/[email protected]
2121
with:

.github/workflows/pages.yml

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

2323
steps:
2424
- name: Checkout main
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
- name: Setup Pages
2727
uses: actions/configure-pages@v3
2828
- name: Set up Python 3.10

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set up Python 3.x
1515
uses: actions/setup-python@v4
1616
with:

0 commit comments

Comments
 (0)