Skip to content

Commit 199ab9d

Browse files
dependabot[bot]neilime
authored andcommitted
build(deps): bump the github-actions-dependencies group with 3 updates
Bumps the github-actions-dependencies group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/cache` from 5.0.0 to 5.0.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@a783357...9255dc7) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@330a01c...b7c566a) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@018cc2c...37930b1) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f26cdf3 commit 199ab9d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/__shared-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
php-version: ${{ matrix.php-versions }}
3434

3535
- name: ♻️ Tools cache
36-
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
36+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3737
with:
3838
path: tools/cache
3939
key: ${{ runner.os }}-tools-${{ matrix.php-versions }}-${{ github.sha }}
@@ -54,15 +54,15 @@ jobs:
5454
run: composer phpstan -- --error-format=github
5555

5656
- name: ♻️ Tests cache
57-
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
57+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
5858
with:
5959
path: tests/.phpunit.result.cache
6060
key: ${{ runner.os }}-tests-${{ github.sha }}
6161
restore-keys: |
6262
${{ runner.os }}-tests-
6363
6464
- name: ♻️ Fixtures cache
65-
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
65+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6666
with:
6767
path: .cache
6868
key: fixture-cache-${{ hashFiles('composer.lock') }}

.github/workflows/main-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
create_site_page "./_site/$section/index.md" "$section" "$filepath"
6262
done
6363
64-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
64+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6565
with:
6666
name: docs-site
6767
path: ./_site
@@ -79,7 +79,7 @@ jobs:
7979
- name: 📃 Generate PHP documentation
8080
run: docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 -d ./src -t ./_site/phpdoc
8181

82-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
82+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
8383
with:
8484
name: docs-phpdoc
8585
path: ./_site
@@ -95,7 +95,7 @@ jobs:
9595
name: github-pages
9696
url: ${{ steps.deployment.outputs.page_url }}
9797
steps:
98-
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
98+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
9999
with:
100100
pattern: "docs-*"
101101
path: ./

0 commit comments

Comments
 (0)