Skip to content

Commit 7f67b73

Browse files
dependabot[bot]MatteoH2O1999
authored andcommitted
fix(deps): bump actions/checkout from 3 to 4
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] <support@github.com>
1 parent daee64f commit 7f67b73

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
os: [macos-latest, windows-latest, ubuntu-latest]
2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
submodules: recursive
3030
- name: Test action with Python ${{ inputs.python-version }}

.github/workflows/periodic_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix-json: ${{ steps.matrix.outputs.matrix }}
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
submodules: recursive
2121
- name: Update pip
@@ -38,7 +38,7 @@ jobs:
3838
matrix: ${{ fromJSON(needs.create_matrix.outputs.matrix-json) }}
3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
submodules: recursive
4444
- name: Setup Python ${{ matrix.python-version }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix-json: ${{ steps.matrix.outputs.matrix }}
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
submodules: recursive
2626
- name: Update pip
@@ -43,7 +43,7 @@ jobs:
4343
matrix: ${{ fromJSON(needs.create_matrix.outputs.matrix-json) }}
4444
steps:
4545
- name: Checkout code
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
with:
4848
submodules: recursive
4949
- name: Setup Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)