Skip to content

Commit

Permalink
Merge pull request #143 from exonet/dependabot/github_actions/stefanz…
Browse files Browse the repository at this point in the history
…weifel/git-auto-commit-action-5

Bump stefanzweifel/git-auto-commit-action from 4 to 5
  • Loading branch information
robbinjanssen authored Oct 9, 2023
2 parents 64a1b97 + e78ffad commit e6269f4
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 29 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
check-code-style:
name: Check code style
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout repository
Expand All @@ -20,6 +22,6 @@ jobs:
uses: docker://oskarstark/php-cs-fixer-ga

- name: Apply php-cs-fixer changes
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply php-cs-fixer changes
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
sed -i "s/CLIENT_VERSION = 'v.*';/CLIENT_VERSION = '${{ needs.update-release-draft.outputs.draft-version }}';/g" src/Powerdns.php
- name: Apply version changes
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Auto update drafter version in CLIENT_VERSION
4 changes: 1 addition & 3 deletions src/Exceptions/InvalidChangeType.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class InvalidChangeType extends PowerdnsException
{
}
class InvalidChangeType extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/InvalidKindType.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class InvalidKindType extends PowerdnsException
{
}
class InvalidKindType extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/InvalidMetaKind.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class InvalidMetaKind extends PowerdnsException
{
}
class InvalidMetaKind extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/InvalidNsec3Param.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class InvalidNsec3Param extends PowerdnsException
{
}
class InvalidNsec3Param extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/InvalidRecordType.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class InvalidRecordType extends PowerdnsException
{
}
class InvalidRecordType extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/InvalidSoaEditType.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class InvalidSoaEditType extends PowerdnsException
{
}
class InvalidSoaEditType extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/PowerdnsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

use Exception;

class PowerdnsException extends Exception
{
}
class PowerdnsException extends Exception {}
4 changes: 1 addition & 3 deletions src/Exceptions/ReadOnlyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class ReadOnlyException extends PowerdnsException
{
}
class ReadOnlyException extends PowerdnsException {}
4 changes: 1 addition & 3 deletions src/Exceptions/ValidationException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Exonet\Powerdns\Exceptions;

class ValidationException extends PowerdnsException
{
}
class ValidationException extends PowerdnsException {}

0 comments on commit e6269f4

Please sign in to comment.