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
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@v5
uses: actions/checkout@v6
# Install packages necessary for building libcpr and package
- name: "Update package list"
run: sudo apt update
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 @@ -38,7 +38,7 @@ jobs:
run: Write-Host "NuGet package version will be '$env:RELEASE_VERSION'."

# ───────────────────────────── Repository & tools ────────────────────────────
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/setup-python@v6

Expand Down
26 changes: 13 additions & 13 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@v5
uses: actions/checkout@v6
- 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@v5
uses: actions/checkout@v6
- 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@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y gcc g++ clang git make openssl-devel libcurl-devel cmake libpsl-devel libunistring-devel meson
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y gcc g++ clang git make openssl-devel libcurl-devel cmake libpsl-devel libunistring-devel meson
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -178,7 +178,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y git gcc g++ make openssl-devel cmake libunistring-devel
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- name: Install Dependencies
run: dnf install -y gcc g++ clang git make openssl-devel libasan libubsan liblsan libtsan cmake libpsl-devel libunistring-devel meson
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -235,7 +235,7 @@ jobs:
- name: Setup MSVC environment
uses: ilammy/msvc-dev-cmd@v1
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CMAKE_GENERATOR: "Visual Studio 17 2022"
Expand All @@ -260,7 +260,7 @@ jobs:
- name: Install OpenSSL
run: choco install openssl -y
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CMAKE_GENERATOR: "Visual Studio 17 2022"
Expand All @@ -284,7 +284,7 @@ jobs:
- name: Install libpsl
run: brew install libpsl
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -306,7 +306,7 @@ jobs:
- name: Install libpsl
run: brew install libpsl
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -331,7 +331,7 @@ jobs:
- name: Install libpsl
run: brew install libpsl
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
- name: Install libpsl
run: brew install libpsl
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- 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@v5
uses: actions/checkout@v6
- 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@v5
uses: actions/checkout@v6
- 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 @@ -8,7 +8,7 @@ jobs:
container: "fedora:latest" # Use fedora for an up to date version of cppcheck
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Update package list
run: dnf update -y
- name: Install Dependencies
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@v5
uses: actions/checkout@v6
with:
ref: ${{github.sha}}
- name: "Replace GIT_TAG"
Expand Down
Loading