Skip to content

Commit

Permalink
DX: update actions producing warnings (#7925)
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed Apr 7, 2024
1 parent 87c75fa commit 8b8fc66
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/composite-actions/install-composer-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ runs:
echo "PHP_VERSION_ID=$(php -r 'echo PHP_VERSION_ID;')" >> $GITHUB_ENV
- name: Cache Composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: Composer-${{ runner.os }}-${{ env.COMPOSER_CACHE_PHP }}-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
Expand All @@ -45,7 +45,7 @@ runs:
Composer-${{ runner.os }}-
- name: Install dependencies
uses: nick-invision/retry@v2
uses: nick-invision/retry@v3
with:
timeout_minutes: 5
max_attempts: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:
php: ${{ matrix.php-version }}

- name: Cache dev-tools
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dev-tools/bin/
key: Build-${{ hashFiles('dev-tools/build.sh') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
run: rm ./dev-tools/composer.lock

- name: Cache dev-tools
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dev-tools/bin/
key: DevTools-${{ hashFiles('dev-tools/install.sh') }}

- name: Install dev-tools
uses: nick-invision/retry@v2
uses: nick-invision/retry@v3
with:
timeout_minutes: 5
max_attempts: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-sphinx-lint
Expand Down

0 comments on commit 8b8fc66

Please sign in to comment.