Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vcpkg_ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vcpkg_ci_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vcpkg_ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down