From 5067abad574bea95ac7d472ca38e7288026d2110 Mon Sep 17 00:00:00 2001 From: Christian Heel <66922325+heelc29@users.noreply.github.com> Date: Wed, 18 Mar 2026 16:18:26 -0500 Subject: [PATCH 1/2] update actions/checkout --- .github/workflows/workflow-v2.yml | 14 +++++++------- .github/workflows/workflow-v3.yml | 10 +++++----- .github/workflows/workflow-v4.yml | 10 +++++----- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/workflow-v2.yml b/.github/workflows/workflow-v2.yml index eebabe3..b0848e7 100644 --- a/.github/workflows/workflow-v2.yml +++ b/.github/workflows/workflow-v2.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest container: joomlaprojects/docker-images:php8.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache@v4 id: cache-php with: @@ -29,7 +29,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 needs: [composer] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -46,7 +46,7 @@ jobs: needs: [code-style-php] continue-on-error: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -61,7 +61,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -76,7 +76,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -91,7 +91,7 @@ jobs: container: joomlaprojects/docker-images:php7.2 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Unit tests run: | composer install --prefer-stable --prefer-lowest @@ -106,7 +106,7 @@ jobs: matrix: php_version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Unit tests run: | composer install diff --git a/.github/workflows/workflow-v3.yml b/.github/workflows/workflow-v3.yml index 363d73b..3b06f68 100644 --- a/.github/workflows/workflow-v3.yml +++ b/.github/workflows/workflow-v3.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest container: joomlaprojects/docker-images:php8.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache@v4 id: cache-php with: @@ -28,7 +28,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 needs: [composer] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -44,7 +44,7 @@ jobs: container: joomlaprojects/docker-images:php8.4 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -59,7 +59,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Unit tests run: | git config --global --add safe.directory $GITHUB_WORKSPACE @@ -75,7 +75,7 @@ jobs: matrix: php_version: ['8.1', '8.2', '8.3', '8.4', '8.5'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Unit tests run: | git config --global --add safe.directory $GITHUB_WORKSPACE diff --git a/.github/workflows/workflow-v4.yml b/.github/workflows/workflow-v4.yml index 125b88d..19afc4d 100644 --- a/.github/workflows/workflow-v4.yml +++ b/.github/workflows/workflow-v4.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest container: joomlaprojects/docker-images:php8.3 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache@v4 id: cache-php with: @@ -28,7 +28,7 @@ jobs: container: joomlaprojects/docker-images:php8.3 needs: [composer] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -44,7 +44,7 @@ jobs: container: joomlaprojects/docker-images:php8.4 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/cache/restore@v4 with: path: vendor @@ -59,7 +59,7 @@ jobs: container: joomlaprojects/docker-images:php8.3 needs: [code-style-php] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Unit tests run: | git config --global --add safe.directory $GITHUB_WORKSPACE @@ -75,7 +75,7 @@ jobs: matrix: php_version: ['8.3', '8.4', '8.5'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Unit tests run: | git config --global --add safe.directory $GITHUB_WORKSPACE From 9fa8a348f92719bfd384aa99f88c84f2145b6a92 Mon Sep 17 00:00:00 2001 From: Christian Heel <66922325+heelc29@users.noreply.github.com> Date: Wed, 18 Mar 2026 16:19:16 -0500 Subject: [PATCH 2/2] update actions/cache --- .github/workflows/workflow-v2.yml | 10 +++++----- .github/workflows/workflow-v3.yml | 6 +++--- .github/workflows/workflow-v4.yml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/workflow-v2.yml b/.github/workflows/workflow-v2.yml index b0848e7..97b0806 100644 --- a/.github/workflows/workflow-v2.yml +++ b/.github/workflows/workflow-v2.yml @@ -10,7 +10,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 steps: - uses: actions/checkout@v6 - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: cache-php with: path: vendor @@ -30,7 +30,7 @@ jobs: needs: [composer] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} @@ -47,7 +47,7 @@ jobs: continue-on-error: true steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} @@ -62,7 +62,7 @@ jobs: needs: [code-style-php] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} @@ -77,7 +77,7 @@ jobs: needs: [code-style-php] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/workflow-v3.yml b/.github/workflows/workflow-v3.yml index 3b06f68..cb419a2 100644 --- a/.github/workflows/workflow-v3.yml +++ b/.github/workflows/workflow-v3.yml @@ -10,7 +10,7 @@ jobs: container: joomlaprojects/docker-images:php8.1 steps: - uses: actions/checkout@v6 - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: cache-php with: path: vendor @@ -29,7 +29,7 @@ jobs: needs: [composer] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} @@ -45,7 +45,7 @@ jobs: needs: [code-style-php] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/workflow-v4.yml b/.github/workflows/workflow-v4.yml index 19afc4d..41eb47e 100644 --- a/.github/workflows/workflow-v4.yml +++ b/.github/workflows/workflow-v4.yml @@ -10,7 +10,7 @@ jobs: container: joomlaprojects/docker-images:php8.3 steps: - uses: actions/checkout@v6 - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: cache-php with: path: vendor @@ -29,7 +29,7 @@ jobs: needs: [composer] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} @@ -45,7 +45,7 @@ jobs: needs: [code-style-php] steps: - uses: actions/checkout@v6 - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}