From f0b3d313d6b5721c779eec5107f4cf2720dea6bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Dec 2022 23:54:27 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5a4649d..e1e0b60b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: name: GCC runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - run: source .github/ubuntu_deps.sh @@ -26,7 +26,7 @@ jobs: name: Tarball runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - run: source .github/ubuntu_deps.sh @@ -48,7 +48,7 @@ jobs: CXX: clang++ CC: clang steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - run: source .github/ubuntu_deps.sh @@ -71,7 +71,7 @@ jobs: #CXXFLAGS: "-fsanitize=address -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIE" #LDFLAGS: "-fsanitize=address -pie" #steps: - #- uses: actions/checkout@v2 + #- uses: actions/checkout@v3 #with: #submodules: true #- run: source .github/ubuntu_deps.sh @@ -87,7 +87,7 @@ jobs: #CXXFLAGS: "-fsanitize=thread -O1 -fPIE" #LDFLAGS: "-fsanitize=thread" #steps: - #- uses: actions/checkout@v2 + #- uses: actions/checkout@v3 #with: #submodules: true #- run: source .github/ubuntu_deps.sh @@ -105,7 +105,7 @@ jobs: #name: macOS #runs-on: macos-latest #steps: - #- uses: actions/checkout@v2 + #- uses: actions/checkout@v3 #with: #submodules: true #- run: | @@ -122,7 +122,7 @@ jobs: - tarball - clang steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - id: tagger @@ -161,7 +161,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - run: sudo apt-get update