Skip to content

Commit

Permalink
Reverted to actions/checkout@v3 to deal with old node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
COM8 committed Dec 28, 2023
1 parent 0e1b1d0 commit 9228a39
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v3
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@v4
uses: actions/checkout@v3
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 @@ -22,7 +22,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -118,7 +118,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@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -149,7 +149,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@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand Down Expand Up @@ -178,7 +178,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@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -200,7 +200,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CMAKE_GENERATOR: "Visual Studio 17 2022"
Expand All @@ -220,7 +220,7 @@ jobs:
- name: Install OpenSSL
run: choco install openssl -y
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CMAKE_GENERATOR: "Visual Studio 17 2022"
Expand All @@ -247,7 +247,7 @@ jobs:
export CPPFLAGS="-I/usr/local/opt/openssl@3/include"
export PKG_CONFIG_PATH="/usr/local/opt/openssl@3/lib/pkgconfig"
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -272,7 +272,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -291,7 +291,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: "Build & Test"
env:
CPR_BUILD_TESTS: ON
Expand All @@ -318,7 +318,7 @@ jobs:
echo 'export PATH="/usr/local/opt/openssl@3/bin:$PATH"' >> /Users/runner/.bash_profile
source ~/.bash_profile
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- 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 @@ -14,7 +14,7 @@ jobs:
- name: Install clang-tidy
run: sudo dnf install -y clang-tools-extra
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Check format
uses: RafikFarhad/clang-format-github-action@3.2.0
with:
Expand Down
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@v4
uses: actions/checkout@v3
- 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@v4
uses: actions/checkout@v3
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@v4
uses: actions/checkout@v3
with:
ref: ${{github.sha}}
- name: "Replace GIT_TAG"
Expand Down

0 comments on commit 9228a39

Please sign in to comment.