Skip to content

Commit

Permalink
build(deps): Bump the dependencies group (#931)
Browse files Browse the repository at this point in the history
Bumps the dependencies group in /.github/workflows with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 19, 2023
1 parent 548f5f6 commit cddf84c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Ensure the PHAR works
run: bin/php-scoper.phar --version

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload the PHAR artifact
with:
name: php-scoper-phar-${{ matrix.php }}
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
uses: ./.github/actions/install-vendor

- name: Retrieve built PHAR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: php-scoper-phar-${{ matrix.php }}
path: bin
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
java-version: 11

- name: Retrieve built PHP-Scoper PHAR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: php-scoper-phar-${{ matrix.php-version }}
path: bin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
bin/php-scoper.phar
- name: Upload the PHAR artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: php-scoper-phar
path: |
Expand All @@ -85,7 +85,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: php-scoper-phar
path: .
Expand All @@ -112,7 +112,7 @@ jobs:
with:
php-version: '8.2'

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: php-scoper-phar
path: .
Expand Down

0 comments on commit cddf84c

Please sign in to comment.