Skip to content

Commit db19970

Browse files
[dependabot][ghaction] - (deps): Bump actions/checkout from 4 to 5 in the all-actions group (#145)
* [dependabot][ghaction] - (deps): Bump actions/checkout Bumps the all-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]> * Remove Debug --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yoanm <[email protected]>
1 parent 8371dca commit db19970

File tree

2 files changed

+3
-51
lines changed

2 files changed

+3
-51
lines changed

.github/workflows/reusable-CI-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- php-version: '8.2'
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
# @TODO Figure out if coverage for every version is actually useful or not
3333
# - name: Enable coverage
@@ -103,7 +103,7 @@ jobs:
103103
name: Static analysis
104104
runs-on: ubuntu-latest
105105
steps:
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v5
107107

108108
- name: Setup PHP 8.2
109109
uses: shivammathur/setup-php@v2
@@ -150,7 +150,7 @@ jobs:
150150

151151
steps:
152152
- name: Check out code
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@v5
154154

155155
- name: Setup PHP ${{ matrix.php-version }}
156156
uses: shivammathur/setup-php@v2

.github/workflows/reusable-coverage-upload-workflow.yml

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -65,51 +65,3 @@ jobs:
6565
force-gh-pr: ${{ needs.fetch-info.outputs.pull-request }}
6666
force-uploader-build: ${{ needs.fetch-info.outputs.run-id }}
6767
force-uploader-build-url: ${{ needs.fetch-info.outputs.run-url }}
68-
69-
debug-context:
70-
name: DEBUG - context
71-
runs-on: ubuntu-latest
72-
steps:
73-
- run: |
74-
echo '{'
75-
echo '"github.action": ${{ toJson(github.action) }},'
76-
echo '"github.action_path": ${{ toJson(github.action_path) }},'
77-
echo '"github.action_ref": ${{ toJson(github.action_ref) }},'
78-
echo '"github.action_repository": ${{ toJson(github.action_repository) }},'
79-
echo '"github.action_status": ${{ toJson(github.action_status) }},'
80-
echo '"github.actor": ${{ toJson(github.actor) }},'
81-
echo '"github.actor_id": ${{ toJson(github.actor_id) }},'
82-
echo '"github.base_ref": ${{ toJson(github.base_ref) }},'
83-
echo '"github.event": ${{ toJson(github.event) }},'
84-
echo '"github.event_name": ${{ toJson(github.event_name) }},'
85-
echo '"github.event_path": ${{ toJson(github.event_path) }},'
86-
echo '"github.head_ref": ${{ toJson(github.head_ref) }},'
87-
echo '"github.job": ${{ toJson(github.job) }},'
88-
echo '"github.path": ${{ toJson(github.path) }},'
89-
echo '"github.ref": ${{ toJson(github.ref) }},'
90-
echo '"github.ref_name": ${{ toJson(github.ref_name) }},'
91-
echo '"github.ref_protected": ${{ toJson(github.ref_protected) }},'
92-
echo '"github.ref_type": ${{ toJson(github.ref_type) }},'
93-
echo '"github.repository": ${{ toJson(github.repository) }},'
94-
echo '"github.repository_id": ${{ toJson(github.repository_id) }},'
95-
echo '"github.repository_owner": ${{ toJson(github.repository_owner) }},'
96-
echo '"github.repository_owner_id": ${{ toJson(github.repository_owner_id) }},'
97-
echo '"github.repositoryUrl": ${{ toJson(github.repositoryUrl) }},'
98-
echo '"github.run_id": ${{ toJson(github.run_id) }},'
99-
echo '"github.run_number": ${{ toJson(github.run_number) }},'
100-
echo '"github.run_attempt": ${{ toJson(github.run_attempt) }},'
101-
echo '"github.sha": ${{ toJson(github.sha) }},'
102-
echo '"github.triggering_actor": ${{ toJson(github.triggering_actor) }},'
103-
echo '"github.workflow": ${{ toJson(github.workflow) }},'
104-
echo '"github.workflow_ref": ${{ toJson(github.workflow_ref) }},'
105-
echo '"github.workflow_sha": ${{ toJson(github.workflow_sha) }},'
106-
echo '"github.workspace": ${{ toJson(github.workspace) }}'
107-
echo '}'
108-
109-
debug-uploads:
110-
name: DEBUG - Uploaders
111-
runs-on: ubuntu-latest
112-
needs: [ codacy-uploader, codecov-uploader ]
113-
steps:
114-
- run: echo 'codecov='"'"'${{ toJson(needs.codecov-uploader) }}'"'"
115-
- run: echo 'codacy='"'"'${{ toJson(needs.codacy-uploader) }}'"'"

0 commit comments

Comments
 (0)