Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore(deps): bump actions/checkout from 3 to 4 #194

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/action-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- name: 🏠 Checkout locally
if: ${{ env.ACT }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: check-new-commits-action
- name: 💻 Checkout from GitHub
if: ${{ !env.ACT }}
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 🔄 Test the action with currrent repo content
id: check-new-commits
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 💻 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 💻 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 🔨 Read .nvmrc
id: read_nvmrc
run: |
Expand Down
Loading