Skip to content

Commit d3988dd

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

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/build-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
name: Code Coverage
104104
steps:
105105
- name: Checkout code
106-
uses: actions/checkout@v6
106+
uses: actions/checkout@v7
107107
with:
108108
ref: ${{ needs.get-refs.outputs.ref }}
109109

@@ -138,7 +138,7 @@ jobs:
138138
name: ubuntu-x64-(${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
139139
steps:
140140

141-
- uses: actions/checkout@v6
141+
- uses: actions/checkout@v7
142142
with:
143143
ref: ${{ needs.get-refs.outputs.ref }}
144144

@@ -172,7 +172,7 @@ jobs:
172172
id-token: write
173173
name: windows-${{ matrix.options.address_model }}-(${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
174174
steps:
175-
- uses: actions/checkout@v6
175+
- uses: actions/checkout@v7
176176
with:
177177
ref: ${{ needs.get-refs.outputs.ref }}
178178

@@ -218,7 +218,7 @@ jobs:
218218
OPENSSL_ROOT_DIR: /usr/local/opt/openssl/
219219

220220
steps:
221-
- uses: actions/checkout@v6
221+
- uses: actions/checkout@v7
222222
with:
223223
ref: ${{ needs.get-refs.outputs.ref }}
224224

@@ -253,7 +253,7 @@ jobs:
253253
sudo apt-get install -y clang-format clang-format-22
254254
sudo ln -sf /usr/bin/clang-format-22 /usr/bin/clang-format
255255
256-
- uses: actions/checkout@v6
256+
- uses: actions/checkout@v7
257257
with:
258258
ref: ${{ needs.get-refs.outputs.ref }}
259259
fetch-depth: 0

.github/workflows/coverage-report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Create and upload coverage
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818

1919
- uses: ./.github/actions/coverage-report
2020
with:

.github/workflows/create-release-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Create release branch from `${{ inputs.BRANCH_NAME }}`
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
ref: ${{ inputs.BRANCH_NAME }}
2121

@@ -56,7 +56,7 @@ jobs:
5656
name: Update next version in `${{ inputs.BRANCH_NAME }}` to `${{ inputs.NEXT_VERSION }}`
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v6
59+
- uses: actions/checkout@v7
6060
with:
6161
ref: ${{ inputs.BRANCH_NAME }}
6262

.github/workflows/nightly-macos-x86_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
OPENSSL_ROOT_DIR: /usr/local/opt/openssl/
3939

4040
steps:
41-
- uses: actions/checkout@v6
41+
- uses: actions/checkout@v7
4242

4343
- uses: ./.github/actions/build-test/macos-x86_64
4444
with:

.github/workflows/nightly-ubuntu-x86_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
(${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{matrix.boost.version}}, ${{ matrix.with_openssl.name }})
4949
5050
steps:
51-
- uses: actions/checkout@v6
51+
- uses: actions/checkout@v7
5252

5353
- uses: ./.github/actions/build-test/ubuntu-x86_64
5454
with:

.github/workflows/nightly-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
(${{ matrix.vc_boost.name }}, ${{ matrix.options.address_model }}, ${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
4848
4949
steps:
50-
- uses: actions/checkout@v6
50+
- uses: actions/checkout@v7
5151

5252
- name: Cache Boost Version
5353
id: cache-boost

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
needs: prepare
2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
with:
2626
ref: ${{ inputs.BRANCH_NAME }}
2727
fetch-depth: 0
@@ -44,12 +44,12 @@ jobs:
4444
env:
4545
GH_PAGES_BRANCH: gh-pages
4646
steps:
47-
- uses: actions/checkout@v6
47+
- uses: actions/checkout@v7
4848
with:
4949
path: repo
5050
ref: ${{ needs.prepare.outputs.tag_name }}
5151

52-
- uses: actions/checkout@v6
52+
- uses: actions/checkout@v7
5353
with:
5454
ref: ${{ env.GH_PAGES_BRANCH}}
5555
path: ${{ env.GH_PAGES_BRANCH}}

0 commit comments

Comments
 (0)