Skip to content

Commit

Permalink
Remove redundant actions/cache step from workflow
Browse files Browse the repository at this point in the history
The `actions/cache` step was duplicated unnecessarily and has been removed for clarity and optimization. This change ensures the workflow remains clean and avoids redundant executions.
  • Loading branch information
Spomky committed Jan 4, 2025
1 parent 12807f7 commit ca5f910
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
id: "composer-cache"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- name: "Cache Composer dependencies"
uses: actions/cache@v4
Expand Down Expand Up @@ -126,7 +125,6 @@ jobs:
id: "composer-cache"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- name: "Cache Composer dependencies"
uses: actions/cache@v4
Expand Down Expand Up @@ -167,7 +165,6 @@ jobs:
id: "composer-cache"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- name: "Cache Composer dependencies"
uses: actions/cache@v4
Expand Down Expand Up @@ -214,7 +211,6 @@ jobs:
id: "composer-cache"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- name: "Cache Composer dependencies"
uses: actions/cache@v4
Expand Down Expand Up @@ -264,7 +260,6 @@ jobs:
id: "composer-cache"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- name: "Cache Composer dependencies"
uses: actions/cache@v4
Expand Down Expand Up @@ -300,7 +295,6 @@ jobs:
id: "composer-cache"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- name: "Cache Composer dependencies"
uses: actions/cache@v4
Expand Down

0 comments on commit ca5f910

Please sign in to comment.