Skip to content

Commit f612dfc

Browse files
Update actions/checkout action to v6
1 parent e2c8d35 commit f612dfc

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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
@@ -6,7 +6,7 @@ jobs:
66
build_and_publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v6
1010
with:
1111
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1212
ref: dev

.github/workflows/license_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
license_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/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.

0 commit comments

Comments
 (0)