@@ -17,29 +17,29 @@ jobs:
1717 date : ${{ steps.date.outputs.date }}
1818 steps :
1919 - name : " Checkout"
20- uses : " actions/checkout@v4 "
20+ uses : " actions/checkout@v6 "
2121
2222 - name : " Get current date for the daily cache"
2323 id : " date"
2424 run : echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
2525
2626 - name : " Cache the php documentation"
2727 id : cache-php-docs
28- uses : " actions/cache@v4 "
28+ uses : " actions/cache@v5 "
2929 with :
3030 path : " generator/docs"
3131 key : php-docs-${{ steps.date.outputs.date }}
3232
3333 - name : " Check out salathe/phpdoc-base"
34- uses : " actions/checkout@v4 "
34+ uses : " actions/checkout@v6 "
3535 if : steps.cache-php-docs.outputs.cache-hit != 'true'
3636 with :
3737 path : " generator/docs/salathe/phpdoc-base"
3838 repository : " salathe/phpdoc-base"
3939 fetch-depth : 0
4040
4141 - name : " Check out php/doc-en"
42- uses : " actions/checkout@v4 "
42+ uses : " actions/checkout@v6 "
4343 if : steps.cache-php-docs.outputs.cache-hit != 'true'
4444 with :
4545 path : " generator/docs/php/doc-en"
@@ -58,21 +58,21 @@ jobs:
5858 - " 8.5"
5959 steps :
6060 - name : " Checkout"
61- uses : " actions/checkout@v4 "
61+ uses : " actions/checkout@v6 "
6262 - name : " Install PHP with extensions"
6363 uses : " shivammathur/setup-php@v2"
6464 with :
6565 coverage : " pcov"
6666 php-version : " ${{ matrix.php-version }}"
6767 - name : " Fetch cached docs"
6868 id : cache-docs
69- uses : " actions/cache@v4 "
69+ uses : " actions/cache@v5 "
7070 with :
7171 path : " generator/docs"
7272 key : php-docs-${{ needs.fetch_defs.outputs.date }}
7373 fail-on-cache-miss : true
7474 - name : " Cache dependencies installed with composer"
75- uses : " actions/cache@v4 "
75+ uses : " actions/cache@v5 "
7676 with :
7777 path : " ~/.composer/cache"
7878 key : " php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }}"
@@ -107,14 +107,14 @@ jobs:
107107 - " 8.5"
108108 steps :
109109 - name : " Checkout"
110- uses : " actions/checkout@v4 "
110+ uses : " actions/checkout@v6 "
111111 - name : " Install PHP with extensions"
112112 uses : " shivammathur/setup-php@v2"
113113 with :
114114 coverage : " pcov"
115115 php-version : " ${{ matrix.php-version }}"
116116 - name : " Cache dependencies installed with composer"
117- uses : " actions/cache@v4 "
117+ uses : " actions/cache@v5 "
118118 with :
119119 path : " ~/.composer/cache"
120120 key : " php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }}"
@@ -138,21 +138,21 @@ jobs:
138138 needs : " fetch_defs"
139139 steps :
140140 - name : " Checkout"
141- uses : " actions/checkout@v4 "
141+ uses : " actions/checkout@v6 "
142142 - name : " Install PHP with extensions"
143143 uses : " shivammathur/setup-php@v2"
144144 with :
145145 coverage : " pcov"
146146 php-version : " 8.4"
147147 - name : " Fetch cached docs"
148148 id : cache-php-docs
149- uses : " actions/cache@v4 "
149+ uses : " actions/cache@v5 "
150150 with :
151151 path : " generator/docs"
152152 key : php-docs-${{ needs.fetch_defs.outputs.date }}
153153 fail-on-cache-miss : true
154154 - name : " Cache dependencies installed with composer"
155- uses : " actions/cache@v4 "
155+ uses : " actions/cache@v5 "
156156 with :
157157 path : " ~/.composer/cache"
158158 key : " php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }}"
@@ -174,7 +174,7 @@ jobs:
174174 runs-on : " ubuntu-24.04"
175175 steps :
176176 - name : " Checkout"
177- uses : " actions/checkout@v4 "
177+ uses : " actions/checkout@v6 "
178178 - name : " Install PHP with extensions"
179179 uses : " shivammathur/setup-php@v2"
180180 with :
0 commit comments