Skip to content

Commit

Permalink
Fix indentation in Composer cache action steps
Browse files Browse the repository at this point in the history
Corrected misaligned indentation for the `uses` field in multiple "Cache Composer dependencies" steps within the GitHub Actions workflow file. This ensures consistency and improves readability of the YAML configuration.
  • Loading branch information
Spomky committed Jan 4, 2025
1 parent 3473f64 commit 5d835c1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
fetch-depth: 0

- name: "Cache Composer dependencies"
- uses: actions/cache@v4
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
fetch-depth: 0

- name: "Cache Composer dependencies"
- uses: actions/cache@v4
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Cache Composer dependencies"
- uses: actions/cache@v4
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Cache Composer dependencies"
- uses: actions/cache@v4
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Cache Composer dependencies"
- uses: actions/cache@v4
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Cache Composer dependencies"
- uses: actions/cache@v4
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down

0 comments on commit 5d835c1

Please sign in to comment.