Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 26, 2023
1 parent 3100118 commit 2907057
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@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/[email protected]
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

0 comments on commit 2907057

Please sign in to comment.