Skip to content

Commit 26a7e90

Browse files
Update actions/checkout action to v6
1 parent e1bb9eb commit 26a7e90

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/build_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build_tests:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v6
2727
with:
2828
ref: ${{ github.head_ref }}
2929
- name: Setup Python

.github/workflows/dev2master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build_and_publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1414
ref: dev

.github/workflows/license_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
license_tests:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v6
1919
with:
2020
ref: ${{ github.head_ref }}
2121
- name: Setup Python

.github/workflows/publish_alpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build_and_publish:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v6
2626
with:
2727
ref: dev
2828
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.

.github/workflows/publish_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build_and_publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
with:
1313
ref: dev
1414
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.

.github/workflows/publish_major.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build_and_publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
with:
1313
ref: dev
1414
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.

.github/workflows/publish_minor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build_and_publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
with:
1313
ref: dev
1414
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v6
4242
- name: Set up python ${{ matrix.python-version }}
4343
uses: actions/setup-python@v2
4444
with:

0 commit comments

Comments
 (0)