Skip to content

Commit 9fa737a

Browse files
Bump actions/checkout from 2 to 2.3.4 (#749)
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](actions/checkout@v2...v2.3.4) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d532eed commit 9fa737a

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
shell: bash
3232
working-directory: old
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v2.3.4
3535
- uses: actions/[email protected]
3636
name: Cache build artifact store
3737
with:
@@ -90,7 +90,7 @@ jobs:
9090
shell: bash
9191
working-directory: old
9292
steps:
93-
- uses: actions/checkout@v2
93+
- uses: actions/checkout@v2.3.4
9494
- uses: actions/[email protected]
9595
name: Cache build artifact store
9696
with:

.github/workflows/vcpkg_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
steps:
6161
# Used to get commit message since PRs are on a merge commit
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v2.3.4
6363
with:
6464
ref: ${{ github.event.after }}
6565
submodules: false
@@ -69,7 +69,7 @@ jobs:
6969
echo "$(git log --format=%B -n 1 ${{ github.event.after }})" >> "$GITHUB_ENV"
7070
echo "EOF" >> "$GITHUB_ENV"
7171
72-
- uses: actions/checkout@v2
72+
- uses: actions/checkout@v2.3.4
7373
with:
7474
submodules: true
7575

.github/workflows/vcpkg_ci_mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
# Used to get commit message since PRs are on a merge commit
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v2.3.4
5151
with:
5252
ref: ${{ github.event.after }}
5353
submodules: false
@@ -57,7 +57,7 @@ jobs:
5757
echo "$(git log --format=%B -n 1 ${{ github.event.after }})" >> "$GITHUB_ENV"
5858
echo "EOF" >> "$GITHUB_ENV"
5959
60-
- uses: actions/checkout@v2
60+
- uses: actions/checkout@v2.3.4
6161
with:
6262
submodules: true
6363

.github/workflows/vcpkg_ci_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ARTIFACT_NAME: vcpkg_windows-vs2019_${{ matrix.llvm }}_amd64
5050

5151
steps:
52-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v2.3.4
5353
with:
5454
ref: ${{ github.event.after }}
5555
submodules: false
@@ -59,7 +59,7 @@ jobs:
5959
Add-Content -Path $env:GITHUB_ENV -Encoding UTF8 -Value "$(git log --format=%B -n 1 ${{ github.event.after }})"
6060
Add-Content -Path $env:GITHUB_ENV -Encoding UTF8 -Value 'EOF'
6161
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v2.3.4
6363
with:
6464
submodules: true
6565

.github/workflows/vcpkg_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Cleanup working directory with container root
3636
run: |
3737
docker run --rm -v $(pwd):/workspace -w /workspace ubuntu:latest find . -name . -o -prune -exec rm -rf -- {} + || true
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v2.3.4
3939
- name: Build and Push
4040
working-directory: docker
4141
run: |

.github/workflows/vcpkg_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Publish Release on GitHub
1111
runs-on: ubuntu-20.04
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v2.3.4
1414
- name: Create Release
1515
id: create_release
1616
uses: actions/[email protected]

0 commit comments

Comments
 (0)