Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
path: cpr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Print Version
run: echo "NuGet version will be '${{ env.RELEASE_VERSION }}'"
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Setup NuGet.exe
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y gcc clang git gcc gdb make openssl-devel libcurl-devel cmake
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y gcc clang git gcc gdb make openssl-devel libcurl-devel cmake
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y gcc clang git gcc gdb make openssl-devel libasan libubsan liblsan libtsan cmake
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -207,7 +207,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CMAKE_GENERATOR: "Visual Studio 17 2022"
Expand All @@ -227,7 +227,7 @@ jobs:
- name: Install OpenSSL
run: choco install openssl -y
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CMAKE_GENERATOR: "Visual Studio 17 2022"
Expand All @@ -249,7 +249,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -268,7 +268,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -290,7 +290,7 @@ jobs:
- name: Install OpenSSL
run: brew install openssl
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
- name: Install OpenSSL
run: brew install openssl
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Install clang-format
run: sudo dnf install -y clang-tools-extra
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check format
run: bash scripts/check_clang_format.sh
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install clang-tidy
run: sudo dnf install -y clang-tools-extra
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "[Release g++] Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Update package list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/readme-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{github.sha}}
- name: "Replace GIT_TAG"
Expand Down