Skip to content

Commit

Permalink
upgrade Github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
d8vjork committed Dec 25, 2023
1 parent b466dda commit 7ff8901
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: PHPStan

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Laravel Pint

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get latest release info
id: get-release-info
uses: release-flow/keep-a-changelog-action/get-release-info@v1
- name: Get release info
id: query-release-info
uses: release-flow/keep-a-changelog-action@v2
with:
release-version: latest
command: query
version: latest

- name: Publish to Github releases
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.get-release-info.outputs.release-notes }}
body: ${{ steps.query-release-info.outputs.release-notes }}
# prerelease: true
# files: '*.vsix'
# files: '*.vsix'
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit 7ff8901

Please sign in to comment.