Skip to content

Commit

Permalink
[CI] Bump some actions versions (#238)
Browse files Browse the repository at this point in the history
* ci: increase actions/checkout to v4

* ci: increase ramsey/composer-install to v3

* ci: increase actions/upload-artifact to v4
  • Loading branch information
Kocal authored Sep 13, 2024
1 parent 4e612d6 commit 45394b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
coverage: none

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Get composer cache directory
id: composer-cache
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Upload log file
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test.log
path: var/log/test.log
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
tools: phpstan:1.10, cs2pr

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Download dependencies
uses: ramsey/composer-install@v1
uses: ramsey/composer-install@v3

- name: PHPStan
run: phpstan analyze --no-progress --error-format=checkstyle | cs2pr
Expand All @@ -41,7 +41,7 @@ jobs:
tools: php-cs-fixer:3.42, cs2pr

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: PHP-CS-Fixer
run: php-cs-fixer fix --dry-run --format=checkstyle | cs2pr
Expand All @@ -58,10 +58,10 @@ jobs:
tools: vimeo/psalm:5.18.0

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Download dependencies
uses: ramsey/composer-install@v1
uses: ramsey/composer-install@v3

- name: Psalm
run: psalm --no-progress --output-format=github

0 comments on commit 45394b6

Please sign in to comment.