Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 3 (#529)
Browse files Browse the repository at this point in the history
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](actions/checkout@v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Mar 7, 2022
1 parent 3298608 commit c5eabaa
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os: [ubuntu-20.04, macos-10.15, windows-2019]

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

- name: Build wheels
uses: pypa/cibuildwheel@v2.3.1
Expand All @@ -28,7 +28,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v3
name: Install Python
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Pull image
run: docker pull condaforge/mambaforge:latest
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Run linter inside of container
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Pull image
run: docker pull condaforge/mambaforge:latest
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Run CI inside of container
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Pull image
run: docker pull condaforge/mambaforge:latest
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Fetch full git history
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-build-linux-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Pull image
run: docker pull condaforge/mambaforge:latest
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Fetch full git history
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- osx_arm64_python3.9.____cpython
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Fetch full git history
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- win_64_python3.7.____cpython
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Fetch full git history
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Pull image
run: docker pull condaforge/mambaforge:latest
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Run CI inside of container
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-macos-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
PYTHON_VERSION: ['3.7']
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
PYTHON_VERSION: ['3.7']
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-win-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
Expand Down

0 comments on commit c5eabaa

Please sign in to comment.