Skip to content

Commit

Permalink
Getting on to the latest versions of dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Abraham <[email protected]>
  • Loading branch information
cjyabraham committed May 19, 2024
1 parent a946efa commit 812c4cd
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/build_deploy_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ env:
jobs:
configure_env_vars:
container:
image: quay.io/pantheon-public/build-tools-ci:6.x
image: quay.io/pantheon-public/build-tools-ci:8.x-php8.0
options: --user root
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache bash_env.txt
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-bash-env
with:
Expand Down Expand Up @@ -74,15 +74,15 @@ jobs:
build_php:
container:
image: quay.io/pantheon-public/build-tools-ci:6.x
image: quay.io/pantheon-public/build-tools-ci:8.x-php8.0
options: --user root
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache composer cache
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-composer-cache
with:
Expand All @@ -94,23 +94,23 @@ jobs:
${{ runner.os }}-
- name: Cache vendor folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-vendor
with:
path: ./vendor
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('composer.lock') }}

- name: Cache web folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-web
with:
path: ./web
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('composer.lock') }}

- name: Cache drush folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-drush
with:
Expand All @@ -128,10 +128,10 @@ jobs:
code_sniff_unit_test:
runs-on: ubuntu-latest
container:
image: drupaldocker/php:7.2-cli
image: drupaldocker/php:8.0-cli-2.x
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build dev dependencies
run: composer install --no-ansi --no-interaction --optimize-autoloader --no-progress
Expand All @@ -142,18 +142,18 @@ jobs:

deploy_to_pantheon_lfasiallcci:
container:
image: quay.io/pantheon-public/build-tools-ci:6.x
image: quay.io/pantheon-public/build-tools-ci:8.x-php8.0
options: --user root
runs-on: ubuntu-latest
needs: [configure_env_vars, build_php]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Cache bash_env.txt
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-bash-env
with:
Expand All @@ -165,7 +165,7 @@ jobs:
${{ runner.os }}-
- name: Cache composer cache
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-composer-cache
with:
Expand All @@ -177,23 +177,23 @@ jobs:
${{ runner.os }}-
- name: Cache vendor folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-vendor
with:
path: ./vendor
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('composer.lock') }}

- name: Cache web folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-web
with:
path: ./web
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('composer.lock') }}

- name: Cache drush folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-drush
with:
Expand Down Expand Up @@ -228,18 +228,18 @@ jobs:
deploy_to_pantheon_lfeventsci:
container:
image: quay.io/pantheon-public/build-tools-ci:6.x
image: quay.io/pantheon-public/build-tools-ci:8.x-php8.0
options: --user root
runs-on: ubuntu-latest
needs: [configure_env_vars, build_php]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Cache bash_env.txt
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-bash-env
with:
Expand All @@ -251,7 +251,7 @@ jobs:
${{ runner.os }}-
- name: Cache composer cache
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-composer-cache
with:
Expand All @@ -263,23 +263,23 @@ jobs:
${{ runner.os }}-
- name: Cache vendor folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-vendor
with:
path: ./vendor
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('composer.lock') }}

- name: Cache web folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-web
with:
path: ./web
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('composer.lock') }}

- name: Cache drush folder
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-drush
with:
Expand Down

0 comments on commit 812c4cd

Please sign in to comment.