Skip to content

Commit

Permalink
Update github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and ondrejmirtes committed Mar 5, 2024
1 parent 4a35673 commit 511c1e4
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apiref.yml
Expand Up @@ -89,7 +89,7 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.APIREF_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.APIREF_AWS_SECRET_ACCESS_KEY }}

- uses: peter-evans/repository-dispatch@v2
- uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
repository: "phpstan/phpstan"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/checksum-phar.yml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: "Checkout phpstan-dist"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: phpstan/phpstan
path: phpstan-dist
Expand All @@ -50,12 +50,12 @@ jobs:
run: "rm -r phpstan-dist"

- name: "Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ steps.info.outputs.commit }}

- name: "Checkout latest PHAR compiler"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: phpstan-src
ref: ${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-bot.yml
Expand Up @@ -48,7 +48,7 @@ jobs:
run: "composer install --no-interaction --no-progress"

- name: "Cache downloads"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./issue-bot/tmp
key: "issue-bot-download-v6-${{ github.run_id }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phar.yml
Expand Up @@ -216,7 +216,7 @@ jobs:
run: "gpg --verify phpstan.phar.asc"

- name: "Install lucky_commit"
uses: baptiste0928/cargo-install@v2
uses: baptiste0928/cargo-install@v3
with:
crate: lucky_commit
args: --no-default-features
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-base-on-previous-branch.yml
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Comment PR
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
body: "You've opened the pull request against the latest branch 1.11.x. If your code is relevant on 1.10.x and you want it to be released sooner, please rebase your pull request and change its target to 1.10.x."
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-marked-as-ready.yml
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Comment PR
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
body: "This pull request has been marked as ready for review."
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Expand Up @@ -102,7 +102,7 @@ jobs:
run: "composer install --no-interaction --no-progress"

- name: "Cache Result cache"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./tmp
key: "result-cache-v11-${{ matrix.php-version }}-${{ github.run_id }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -105,7 +105,7 @@ jobs:

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

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-phpstorm-stubs.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
run: "./bin/generate-function-metadata.php"
- name: "Create Pull Request"
id: create-pr
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
branch-suffix: random
Expand Down

0 comments on commit 511c1e4

Please sign in to comment.