Skip to content
This repository was archived by the owner on Jun 8, 2022. It is now read-only.

Update actions/checkout action to v3 #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install and run Cypress tests 🌲
uses: cypress-io/github-action@v2
Expand All @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v2
uses: actions/checkout@v3

# we are only interested in installing and caching dependencies,
# without installing the Cypress binary
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v2
uses: actions/checkout@v3

# we are only interested in installing and caching dependencies,
# without installing the Cypress binary
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v2
uses: actions/checkout@v3

# use actions/cache to restore / save cache
- name: Cache dependencies πŸ’Ž
Expand Down