From 87f419d1c60bc9348c413dde66d745394245541c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 May 2021 05:31:31 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 2.3.4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.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...v2.3.4) Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/vcpkg_ci_linux.yml | 4 ++-- .github/workflows/vcpkg_ci_mac.yml | 4 ++-- .github/workflows/vcpkg_ci_windows.yml | 4 ++-- .github/workflows/vcpkg_docker.yml | 2 +- .github/workflows/vcpkg_release.yml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1be805b6..e9ce839f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: shell: bash working-directory: old steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 - uses: actions/cache@v2.1.5 name: Cache build artifact store with: @@ -90,7 +90,7 @@ jobs: shell: bash working-directory: old steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 - uses: actions/cache@v2.1.5 name: Cache build artifact store with: diff --git a/.github/workflows/vcpkg_ci_linux.yml b/.github/workflows/vcpkg_ci_linux.yml index 546c6904..bfc9a9bd 100644 --- a/.github/workflows/vcpkg_ci_linux.yml +++ b/.github/workflows/vcpkg_ci_linux.yml @@ -59,7 +59,7 @@ jobs: steps: # Used to get commit message since PRs are on a merge commit - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 with: ref: ${{ github.event.after }} submodules: false @@ -69,7 +69,7 @@ jobs: echo "$(git log --format=%B -n 1 ${{ github.event.after }})" >> "$GITHUB_ENV" echo "EOF" >> "$GITHUB_ENV" - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 with: submodules: true diff --git a/.github/workflows/vcpkg_ci_mac.yml b/.github/workflows/vcpkg_ci_mac.yml index b324aae2..9dc35d68 100644 --- a/.github/workflows/vcpkg_ci_mac.yml +++ b/.github/workflows/vcpkg_ci_mac.yml @@ -47,7 +47,7 @@ jobs: steps: # Used to get commit message since PRs are on a merge commit - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 with: ref: ${{ github.event.after }} submodules: false @@ -57,7 +57,7 @@ jobs: echo "$(git log --format=%B -n 1 ${{ github.event.after }})" >> "$GITHUB_ENV" echo "EOF" >> "$GITHUB_ENV" - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 with: submodules: true diff --git a/.github/workflows/vcpkg_ci_windows.yml b/.github/workflows/vcpkg_ci_windows.yml index 28a08dba..13c65858 100644 --- a/.github/workflows/vcpkg_ci_windows.yml +++ b/.github/workflows/vcpkg_ci_windows.yml @@ -49,7 +49,7 @@ jobs: ARTIFACT_NAME: vcpkg_windows-vs2019_${{ matrix.llvm }}_amd64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 with: ref: ${{ github.event.after }} submodules: false @@ -59,7 +59,7 @@ jobs: Add-Content -Path $env:GITHUB_ENV -Encoding UTF8 -Value "$(git log --format=%B -n 1 ${{ github.event.after }})" Add-Content -Path $env:GITHUB_ENV -Encoding UTF8 -Value 'EOF' - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 with: submodules: true diff --git a/.github/workflows/vcpkg_docker.yml b/.github/workflows/vcpkg_docker.yml index 6e3598dd..80b8ce53 100644 --- a/.github/workflows/vcpkg_docker.yml +++ b/.github/workflows/vcpkg_docker.yml @@ -35,7 +35,7 @@ jobs: - name: Cleanup working directory with container root run: | docker run --rm -v $(pwd):/workspace -w /workspace ubuntu:latest find . -name . -o -prune -exec rm -rf -- {} + || true - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 - name: Build and Push working-directory: docker run: | diff --git a/.github/workflows/vcpkg_release.yml b/.github/workflows/vcpkg_release.yml index ce640c47..124e8ddd 100644 --- a/.github/workflows/vcpkg_release.yml +++ b/.github/workflows/vcpkg_release.yml @@ -10,7 +10,7 @@ jobs: name: Publish Release on GitHub runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.4 - name: Create Release id: create_release uses: actions/create-release@v1.1.4