diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index 00210989d..5ebcaf200 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -39,13 +39,13 @@ jobs: DEPLOY_SSH_PORT: ${{ secrets.DEPLOY_SSH_PORT }} DEPLOY_SSH_USERNAME: ${{ secrets.DEPLOY_SSH_USERNAME }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: git config --global --add safe.directory '*' # Copy & paste from https://github.com/actions/cache/blob/master/examples.md#php---composer - name: Get composer cache id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -60,7 +60,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/deploy-manual.yml b/.github/workflows/deploy-manual.yml index 1c39010d6..633560f65 100644 --- a/.github/workflows/deploy-manual.yml +++ b/.github/workflows/deploy-manual.yml @@ -42,13 +42,13 @@ jobs: DEPLOY_SSH_PORT: ${{ secrets.DEPLOY_SSH_PORT }} DEPLOY_SSH_USERNAME: ${{ secrets.DEPLOY_SSH_USERNAME }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: git config --global --add safe.directory '*' # Copy & paste from https://github.com/actions/cache/blob/master/examples.md#php---composer - name: Get composer cache id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -63,7 +63,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 97e031249..d7bc0b819 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -38,13 +38,13 @@ jobs: DEPLOY_SSH_PORT: ${{ secrets.DEPLOY_SSH_PORT }} DEPLOY_SSH_USERNAME: ${{ secrets.DEPLOY_SSH_USERNAME }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: git config --global --add safe.directory '*' # Copy & paste from https://github.com/actions/cache/blob/master/examples.md#php---composer - name: Get composer cache id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -59,7 +59,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad770853d..e82311f09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,12 +11,12 @@ jobs: container: image: skaut/lebeda:8.1 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Copy & paste from https://github.com/actions/cache/blob/master/examples.md#php---composer - name: Get composer cache id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -31,7 +31,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab92ab0e8..0238c7113 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,12 +17,12 @@ jobs: container: image: skaut/lebeda:8.1 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Copy & paste from https://github.com/actions/cache/blob/master/examples.md#php---composer - name: Get composer cache id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -37,7 +37,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}