Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#467)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
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] authored Dec 6, 2023
1 parent 3a54fff commit d877cf0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand All @@ -64,7 +64,7 @@ jobs:
outputs:
tests: ${{ steps.tests.outputs.tests }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand All @@ -89,7 +89,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install requirements
run: |
pip install -r requirements.txt
Expand All @@ -110,7 +110,7 @@ jobs:
outputs:
tests: ${{ steps.tests.outputs.tests }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install requirements
run: |
pip install -r requirements.txt
Expand All @@ -171,7 +171,7 @@ jobs:
outputs:
tests: ${{ steps.tests.outputs.tests }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 'Az CLI login'
if: ${{ github.event_name == 'schedule' }}
uses: azure/login@v1
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
outputs:
tests: ${{ steps.tests.outputs.tests }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: 'auth'
if: ${{ github.event_name == 'schedule' }}
name: 'Authenticate to GCP'
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install requirements
run: |
pip install -U pip
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
using: "composite"
steps:
- name: clone dvc-bench
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: dvc-bench
repository: iterative/dvc-bench
Expand All @@ -18,7 +18,7 @@ runs:
shell: bash
run: pip install -r requirements.txt
- name: checkout base dvc version
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: dvc-bench/dvc
ref: ${{ github.event.pull_request.base.sha }}
Expand All @@ -36,7 +36,7 @@ runs:
dvc --version
pytest --pyargs dvc.testing.benchmarks --benchmark-autosave ${{ inputs.pytest_options }}
- name: checkout PR dvc version
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: dvc-bench/dvc
fetch-depth: 0
Expand Down

0 comments on commit d877cf0

Please sign in to comment.