Skip to content

Commit 3925f9c

Browse files
build(deps): bump actions/download-artifact from 3 to 5 (#7)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Bronner <mike@genealabs.com>
1 parent 5620aca commit 3925f9c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,37 +82,37 @@ jobs:
8282
if: github.event.inputs.update_phpcs == 'true'
8383
run: |
8484
echo "Updating PHPCS to version: ${{ github.event.inputs.phpcs_version }}"
85-
85+
8686
# Download PHPCS PHAR
8787
if [ -n "${{ github.event.inputs.phpcs_url }}" ]; then
8888
echo "Downloading PHPCS from: ${{ github.event.inputs.phpcs_url }}"
8989
curl -L -o bin/phpcs.phar "${{ github.event.inputs.phpcs_url }}"
9090
chmod +x bin/phpcs.phar
9191
fi
92-
92+
9393
# Download PHPCBF PHAR
9494
if [ -n "${{ github.event.inputs.phpcbf_url }}" ]; then
9595
echo "Downloading PHPCBF from: ${{ github.event.inputs.phpcbf_url }}"
9696
curl -L -o bin/phpcbf.phar "${{ github.event.inputs.phpcbf_url }}"
9797
chmod +x bin/phpcbf.phar
9898
fi
99-
99+
100100
# Verify downloads
101101
php bin/phpcs.phar --version
102102
php bin/phpcbf.phar --version
103-
103+
104104
# Commit PHPCS updates
105105
git config --local user.email "github-actions[bot]@users.noreply.github.com"
106106
git config --local user.name "github-actions[bot]"
107-
107+
108108
git add bin/phpcs.phar bin/phpcbf.phar
109-
109+
110110
if ! git diff --staged --quiet; then
111111
git commit -m "chore: 🔧 update PHPCS to ${{ github.event.inputs.phpcs_version }}
112-
112+
113113
- Updated bin/phpcs.phar to version ${{ github.event.inputs.phpcs_version }}
114114
- Updated bin/phpcbf.phar to version ${{ github.event.inputs.phpcs_version }}
115-
115+
116116
Source: https://github.com/squizlabs/PHP_CodeSniffer/releases/tag/${{ github.event.inputs.phpcs_version }}"
117117
fi
118118
@@ -184,7 +184,7 @@ jobs:
184184
token: ${{ secrets.GITHUB_TOKEN }}
185185

186186
- name: Download all artifacts
187-
uses: actions/download-artifact@v4
187+
uses: actions/download-artifact@v5
188188
with:
189189
path: artifacts
190190

0 commit comments

Comments
 (0)