Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tigitz committed May 4, 2024
1 parent bab2818 commit 6902688
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -18,7 +18,7 @@ jobs:
tools: php-cs-fixer, cs2pr

- name: Restore PHP-CS-Fixer cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: .php_cs.cache
key: "php-cs-fixer"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
coverage: none

- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:

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

- uses: jitterbit/get-changed-files@v1
- uses: masesgroup/retrieve-changed-files@v3
id: files
continue-on-error: true

Expand All @@ -34,7 +34,7 @@ jobs:
if: contains(steps.files.outputs.all, env.FILES_REQUIRING_DOCKER_BUILD)

- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v3
if: contains(steps.files.outputs.all, env.FILES_REQUIRING_DOCKER_BUILD)
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
Expand Down

0 comments on commit 6902688

Please sign in to comment.