Skip to content

Commit

Permalink
Upgrade actions/checkout@v2 to v3
Browse files Browse the repository at this point in the history
Seems like v2 is unable to checkout and find branches from forked repos.
This discussion mentions upgrading as solution actions/checkout#551
🤞
  • Loading branch information
aonemd committed Oct 18, 2024
1 parent 5fdb004 commit d83d3eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
export NEW_VERSION=$(semver bump ${{ env.RELEASE }} $CURRENT)
echo "VERSION=$NEW_VERSION" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup git
run: |
git config user.email "pusher-ci@pusher.com"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Run unit tests
run: composer exec phpunit tests/unit

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: pusher/public_actions
path: .github/actions
Expand Down

0 comments on commit d83d3eb

Please sign in to comment.