Skip to content

Commit

Permalink
Merge pull request #250 from py-cov-action/renovate/major-deps-with-m…
Browse files Browse the repository at this point in the history
…ajor-upgrades

Update actions/checkout action to v4
  • Loading branch information
kieferro authored Sep 5, 2023
2 parents f0eca87 + f546d4f commit 564271a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Important: use the commit that was reviewed. GitHub is making sure
# that this is race-condition-proof
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
# comments (to avoid publishing multiple comments in the same PR)
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install everything, run the tests, produce the .coverage file
run: make test # This is the part where you put your own test command
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
# comments (to avoid publishing multiple comments in the same PR)
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install everything, run the tests, produce the .coverage file
run: make test # This is the part where you put your own test command
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
id: setup-python
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
id: download
Expand Down
2 changes: 1 addition & 1 deletion tests/end_to_end/repo/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry
Expand Down

0 comments on commit 564271a

Please sign in to comment.