Skip to content

Commit 5eaaf54

Browse files
authored
Merge pull request #54 from bedita/dependabot/github_actions/gh-actions-bf82f4b4c3
chore(deps): bump the gh-actions group with 2 updates
2 parents dddaed6 + 09d807f commit 5eaaf54

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/php-cs-stan-unit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
3131

3232
- name: 'Share Composer cache across runs'
33-
uses: 'actions/cache@v4'
33+
uses: 'actions/cache@v5'
3434
with:
3535
path: '${{ steps.cachedir.outputs.path }}'
3636
key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}"
@@ -76,7 +76,7 @@ jobs:
7676
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
7777

7878
- name: 'Share Composer cache across runs'
79-
uses: 'actions/cache@v4'
79+
uses: 'actions/cache@v5'
8080
with:
8181
path: '${{ steps.cachedir.outputs.path }}'
8282
key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}"
@@ -144,7 +144,7 @@ jobs:
144144
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
145145

146146
- name: 'Share Composer cache across runs'
147-
uses: 'actions/cache@v4'
147+
uses: 'actions/cache@v5'
148148
with:
149149
path: '${{ steps.cachedir.outputs.path }}'
150150
key: "composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}"
@@ -185,7 +185,7 @@ jobs:
185185
env_vars: PHP_VERSION
186186

187187
- name: 'Archive code coverage results'
188-
uses: 'actions/upload-artifact@v5'
188+
uses: 'actions/upload-artifact@v6'
189189
with:
190190
name: 'PHP-${{ matrix.php-version }}-strategy-job-index-${{ strategy.job-index }}-${{ github.sha }}'
191191
path: '${{ env.FILE_PREFIX }}-clover.xml'

.github/workflows/php-cs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
3636

3737
- name: 'Share Composer cache across runs'
38-
uses: 'actions/cache@v4'
38+
uses: 'actions/cache@v5'
3939
with:
4040
path: '${{ steps.cachedir.outputs.path }}'
4141
key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}"

.github/workflows/php-psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
3636

3737
- name: 'Share Composer cache across runs'
38-
uses: 'actions/cache@v4'
38+
uses: 'actions/cache@v5'
3939
with:
4040
path: '${{ steps.cachedir.outputs.path }}'
4141
key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}"

.github/workflows/php-stan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
3737

3838
- name: 'Share Composer cache across runs'
39-
uses: 'actions/cache@v4'
39+
uses: 'actions/cache@v5'
4040
with:
4141
path: '${{ steps.cachedir.outputs.path }}'
4242
key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}"

.github/workflows/php-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT
7878

7979
- name: 'Share Composer cache across runs'
80-
uses: 'actions/cache@v4'
80+
uses: 'actions/cache@v5'
8181
with:
8282
path: '${{ steps.cachedir.outputs.path }}'
8383
key: "composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}"
@@ -118,7 +118,7 @@ jobs:
118118
env_vars: PHP_VERSION
119119

120120
- name: 'Archive code coverage results'
121-
uses: 'actions/upload-artifact@v5'
121+
uses: 'actions/upload-artifact@v6'
122122
with:
123123
name: 'BEDITA-${{ inputs.bedita_version }}-PHP-${{ matrix.php-version }}-strategy-job-index-${{ strategy.job-index }}-${{ github.sha }}'
124124
path: '${{ env.FILE_PREFIX }}-clover.xml'

.github/workflows/python-cs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Load cached venv
4040
id: cached-poetry-dependencies
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: .venv
4444
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/python-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Load cached venv
4040
id: cached-poetry-dependencies
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: .venv
4444
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)