From 5b88337063c68a239af45dd316aaf65c427a9d1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 17:09:46 -0500 Subject: [PATCH] Bump actions/checkout from 2 to 4 (#56) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a2c979..cee07fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: os: [ubuntu-latest] compiler: [gcc, g++, clang, gcc-12, gcc-13, gcc-14] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Compile Library env: CCFLAGS: "-fsanitize=undefined" @@ -27,7 +27,7 @@ jobs: os: [ubuntu-latest] compiler: [gcc] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Compile Library env: CCFLAGS: "-fsanitize=undefined" @@ -53,7 +53,7 @@ jobs: os: [ubuntu-latest] compiler: [gcc] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # The following should be moved into a seperate action for only pull requests, etc. # where you it posts the information into the PR as a comment (optionally?) - name: Install cppcheck @@ -68,7 +68,7 @@ jobs: os: [macos-latest] compiler: [clang] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Compile Library env: CCFLAGS: "-fsanitize=undefined"