Skip to content

Commit

Permalink
Merge pull request #270 from Nosto/ci-update
Browse files Browse the repository at this point in the history
Bump actions/upload-artifact to v4
  • Loading branch information
supercid authored Sep 17, 2024
2 parents 378c95f + 2935e4f commit 1c262b3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
./vendor/bin/phpcs --standard=ruleset.xml --severity=10 --report=checkstyle --report-file=chkphpcs.xml .
- name: Archive code sniffing results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: phpcs-xml-result
path: chkphpcs.xml
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
run: ./vendor/bin/phpmd . xml codesize,naming,unusedcode,controversial,design --exclude vendor,var,build,tests,.phan --reportfile pmdphpmd.xml --ignore-violations-on-exit

- name: Archive mess detection results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: phpmd-xml-result
path: pmdphpmd.xml
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
continue-on-error: true

- name: Archive copy-paste detection results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: phdpcpd-xml-result
path: phdpcpd.xml
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
run: ./vendor/bin/phing -verbose -Dversion="${{steps.plugin_version.outputs.PLUGIN_VERSION}}" -DcomposerDir=/root/.composer

- name: Archive built package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: NostoTagging-${{steps.plugin_version.outputs.PLUGIN_VERSION}}
path: build/src
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Archive inspection results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: inspection-results
path: output
2 changes: 1 addition & 1 deletion .github/workflows/phan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
continue-on-error: true

- name: Archive static analysis results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: phan-analysis-results
path: chkphan.xml
Expand Down
1 change: 0 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@
<delete file="${buildsrc}/composer.json"/>
<delete file="${buildsrc}/composer.lock"/>
<delete file="${buildsrc}/Dockerfile"/>
<delete file="${buildsrc}/Jenkinsfile"/>
<delete dir="${buildsrc}/.github"/>
</target>

Expand Down

0 comments on commit 1c262b3

Please sign in to comment.