Skip to content

Commit 993cf19

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 12d6cb8 commit 993cf19

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/add_source_to_release.yml

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

1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
submodules: recursive

.github/workflows/build_container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout Repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Login to GitHub Container Registry
2323
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u iqtree --password-stdin

.github/workflows/build_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Fetch or Build IQ-TREE Static Library
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
submodules: recursive
@@ -40,7 +40,7 @@ jobs:
4040
needs: build-iqtree
4141
steps:
4242
- name: Checkout Repository
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646
submodules: recursive

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
platform_id: win_amd64
3131

3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
submodules: recursive

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
os: [ubuntu-latest, macos-15-intel, macos-15, windows-latest] # Intel linux, Intel Mac, ARM Mac, Windows
2525

2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030
submodules: recursive
@@ -46,7 +46,7 @@ jobs:
4646
os: [ubuntu-latest, macos-15-intel, macos-15, windows-latest] # Intel linux, Intel Mac, ARM Mac, Windows
4747
python-version: ["3.11", "3.12", "3.13"]
4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
with:
5151
fetch-depth: 0
5252
submodules: recursive
@@ -102,7 +102,7 @@ jobs:
102102
os: [ubuntu-latest]
103103

104104
steps:
105-
- uses: actions/checkout@v5
105+
- uses: actions/checkout@v6
106106
with:
107107
fetch-depth: 0
108108

@@ -127,7 +127,7 @@ jobs:
127127
os: [ubuntu-latest]
128128

129129
steps:
130-
- uses: actions/checkout@v5
130+
- uses: actions/checkout@v6
131131
with:
132132
fetch-depth: 0
133133

@@ -152,7 +152,7 @@ jobs:
152152
os: [ubuntu-latest]
153153

154154
steps:
155-
- uses: actions/checkout@v5
155+
- uses: actions/checkout@v6
156156
with:
157157
fetch-depth: 0
158158
submodules: recursive

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
platform_id: win_amd64
3131

3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
submodules: recursive
@@ -87,7 +87,7 @@ jobs:
8787
name: Fetch or Build IQ-TREE Static Library
8888
runs-on: ubuntu-latest
8989
steps:
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
with:
9292
fetch-depth: 0
9393
submodules: recursive
@@ -105,7 +105,7 @@ jobs:
105105
needs: build-iqtree
106106
steps:
107107
- name: Checkout Repository
108-
uses: actions/checkout@v5
108+
uses: actions/checkout@v6
109109
with:
110110
fetch-depth: 0
111111
submodules: recursive

0 commit comments

Comments
 (0)