Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHA: update actions/cache + actions/checkout to v3 #160

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Expand Up @@ -124,20 +124,20 @@ jobs:
fi
git config --global pack.threads 0

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary'
fetch-depth: ${{ matrix.coverage && '0' || '1' }}

- name: Cache ccache
uses: actions/cache@v2
uses: actions/cache@v3
if: env.B2_USE_CCACHE
with:
path: ~/.ccache
key: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}

- name: Fetch Boost.CI
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: boostorg/boost-ci
ref: master
Expand Down Expand Up @@ -247,10 +247,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Fetch Boost.CI
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: boostorg/boost-ci
ref: master
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup MSYS2 environment
uses: msys2/setup-msys2@v2
Expand All @@ -312,7 +312,7 @@ jobs:
pacboy: gcc:p cmake:p ninja:p

- name: Fetch Boost.CI
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: boostorg/boost-ci
ref: master
Expand Down Expand Up @@ -361,9 +361,9 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Fetch Boost.CI
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: boostorg/boost-ci
ref: master
Expand Down