Skip to content

Commit

Permalink
Merge pull request #393 from pusher/upgrade-gh-action-checkout
Browse files Browse the repository at this point in the history
Upgrade actions/checkout@v2 to v3
  • Loading branch information
aonemd authored Oct 18, 2024
2 parents 5fdb004 + 352acfa commit f1147d1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 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 "[email protected]"
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 7.2.5

* [CHANGED] Describe your change here. Look at CHANGELOG.md to see the format.

## 7.2.4

* [Fixed] Timeout option is propagated to guzzle client
Expand Down
2 changes: 1 addition & 1 deletion src/Pusher.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Pusher implements LoggerAwareInterface, PusherInterface
/**
* @var string Version
*/
public static $VERSION = '7.2.4';
public static $VERSION = '7.2.5';

/**
* @var null|PusherCrypto
Expand Down

0 comments on commit f1147d1

Please sign in to comment.