Skip to content

Commit b2df254

Browse files
Update actions/checkout action to v6
1 parent f1f2cb9 commit b2df254

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/build_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build_tests:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v6
1111
with:
1212
ref: ${{ github.head_ref }}
1313
- 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
@@ -12,7 +12,7 @@ jobs:
1212
license_tests:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v6
1616
- name: Setup Python
1717
uses: actions/setup-python@v1
1818
with:

.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_docker.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@v2
18+
uses: actions/checkout@v6
1919
with:
2020
ref: ${{ github.ref }}
2121

.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)