Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
name: Code Coverage
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.get-refs.outputs.ref }}

Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
name: ubuntu-x64-(${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
steps:

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.get-refs.outputs.ref }}

Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
id-token: write
name: windows-${{ matrix.options.address_model }}-(${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.get-refs.outputs.ref }}

Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
OPENSSL_ROOT_DIR: /usr/local/opt/openssl/

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.get-refs.outputs.ref }}

Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
sudo apt-get install -y clang-format clang-format-22
sudo ln -sf /usr/bin/clang-format-22 /usr/bin/clang-format

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.get-refs.outputs.ref }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Create and upload coverage
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- uses: ./.github/actions/coverage-report
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Create release branch from `${{ inputs.BRANCH_NAME }}`
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ inputs.BRANCH_NAME }}

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
name: Update next version in `${{ inputs.BRANCH_NAME }}` to `${{ inputs.NEXT_VERSION }}`
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ inputs.BRANCH_NAME }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
OPENSSL_ROOT_DIR: /usr/local/opt/openssl/

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ./.github/actions/build-test/macos-x86_64
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-ubuntu-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
(${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{matrix.boost.version}}, ${{ matrix.with_openssl.name }})

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ./.github/actions/build-test/ubuntu-x86_64
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
(${{ matrix.vc_boost.name }}, ${{ matrix.options.address_model }}, ${{ matrix.build_type }}, ${{ matrix.shared_libs.name }}, ${{ matrix.with_openssl.name }})

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Cache Boost Version
id: cache-boost
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ inputs.BRANCH_NAME }}
fetch-depth: 0
Expand All @@ -44,12 +44,12 @@ jobs:
env:
GH_PAGES_BRANCH: gh-pages
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
path: repo
ref: ${{ needs.prepare.outputs.tag_name }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ env.GH_PAGES_BRANCH}}
path: ${{ env.GH_PAGES_BRANCH}}
Expand Down
Loading