Skip to content

Commit

Permalink
Update actions/checkout action to v4 in e2e and README
Browse files Browse the repository at this point in the history
  • Loading branch information
kieferro committed Sep 5, 2023
1 parent 176f2f8 commit f546d4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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 f546d4f

Please sign in to comment.