Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #959

Merged
merged 1 commit into from
Dec 28, 2023
Merged
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 @@ -10,7 +10,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 @@ -22,7 +22,7 @@ jobs:
with:
cmake-version: '3.22.x'
- name: Checkout
uses: actions/checkout@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
uses: actions/checkout@v4
- 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@v3.1.0
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 @@ -14,6 +14,6 @@ jobs:
- name: Install clang-tidy
run: sudo dnf install -y clang-tools-extra
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check format
uses: RafikFarhad/clang-format-github-action@v3.0.0
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
Loading