Skip to content

Commit d5081f1

Browse files
renovate[bot]ondrejmirtes
authored andcommitted
Update github-actions to v7
1 parent ebf5165 commit d5081f1

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/lint-workflows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
egress-policy: audit
2121

22-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
22+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2323
- name: Check workflow files
2424
run: |
2525
echo "::add-matcher::.github/actionlint-matcher.json"
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
egress-policy: audit
4141

42-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
42+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4343
- name: Run octoscan
4444
id: octoscan
4545
uses: synacktiv/action-octoscan@6b1cf2343893dfb9e5f75652388bd2dc83f456b0 # v1.0.0
@@ -65,7 +65,7 @@ jobs:
6565
egress-policy: audit
6666

6767
- name: Checkout repository
68-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
68+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
6969
with:
7070
persist-credentials: false
7171

@@ -91,7 +91,7 @@ jobs:
9191
egress-policy: audit
9292

9393
- name: Checkout repository
94-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
94+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
9595
with:
9696
persist-credentials: false
9797

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
egress-policy: audit
2828

2929
- name: "Checkout"
30-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
30+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3131
- name: "Install PHP"
3232
uses: "shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc" # v2.37.1
3333
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
egress-policy: audit
2727

2828
- name: "Checkout"
29-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
29+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3030

3131
- name: "Create release"
3232
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0

.github/workflows/send-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
php-version: "8.3"
2727

2828
- name: "Checkout phpstan-src"
29-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
29+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3030
with:
3131
repository: phpstan/phpstan-src
3232
ref: 2.1.x

.github/workflows/update.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323

2424
- name: "Checkout to commit"
2525
if: github.event_name != 'pull_request'
26-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
26+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2727
with:
2828
ref: ${{ github.head_ref }}
2929
fetch-depth: '0'
3030
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
3131
- name: "Checkout to only read"
3232
if: github.event_name == 'pull_request'
33-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
33+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3434
- name: "Install PHP"
3535
uses: "shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc" # v2.37.1
3636
with:
@@ -40,7 +40,7 @@ jobs:
4040
run: "composer install"
4141
working-directory: ./extractor
4242
- name: "Checkout"
43-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
43+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4444
with:
4545
repository: "php/php-src"
4646
path: "php-src"
@@ -52,7 +52,7 @@ jobs:
5252
- name: "Delete checked out php-src repo"
5353
run: "rm -rf php-src"
5454
- name: "Checkout PHP 8.1"
55-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
55+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5656
with:
5757
repository: "php/php-src"
5858
path: "php-src"
@@ -65,7 +65,7 @@ jobs:
6565
- name: "Delete checked out php-src repo"
6666
run: "rm -rf php-src"
6767
- name: "Checkout PHP 8.2"
68-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
68+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
6969
with:
7070
repository: "php/php-src"
7171
path: "php-src"
@@ -78,7 +78,7 @@ jobs:
7878
- name: "Delete checked out php-src repo"
7979
run: "rm -rf php-src"
8080
- name: "Checkout PHP 8.3"
81-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
81+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
8282
with:
8383
repository: "php/php-src"
8484
path: "php-src"
@@ -91,7 +91,7 @@ jobs:
9191
- name: "Delete checked out php-src repo"
9292
run: "rm -rf php-src"
9393
- name: "Checkout PHP 8.4"
94-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
94+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
9595
with:
9696
repository: "php/php-src"
9797
path: "php-src"
@@ -104,7 +104,7 @@ jobs:
104104
- name: "Delete checked out php-src repo"
105105
run: "rm -rf php-src"
106106
- name: "Checkout PHP 8.5"
107-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
107+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
108108
with:
109109
repository: "php/php-src"
110110
path: "php-src"

0 commit comments

Comments
 (0)