Skip to content

Commit

Permalink
Merge pull request #1670 from GrahamCampbell/bumped-actions-versions
Browse files Browse the repository at this point in the history
Bumped actions versions
  • Loading branch information
mnapoli authored Oct 22, 2023
2 parents fc65480 + 0999207 commit 25d94e0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

php-tests:
name: Tests - PHP ${{ matrix.php }} ${{ matrix.dependency-version }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 15
strategy:
matrix:
Expand All @@ -24,7 +24,7 @@ jobs:
dependency-version: '--prefer-lowest'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
# Node is required by some tests
- uses: actions/setup-node@v3
with:
Expand All @@ -45,11 +45,11 @@ jobs:
run: 'vendor/bin/phpunit --testsuite small'

phpstan:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: PHPStan
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand All @@ -68,11 +68,11 @@ jobs:
run: vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr

phpcs:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: PHP CodeSniffer
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand All @@ -91,10 +91,10 @@ jobs:
run: vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr

js-lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: JS type validation and linting
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-layer-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ permissions:
jobs:
update-layer-versions:
name: Update layer versions
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: master

- name: Set AWS credentials
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::534081306603:role/bref-github-actions
role-session-name: bref-github-actions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ env:
jobs:

deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: read
defaults:
run:
working-directory: ./website
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history for "latest modified time"
- run: npm install --global vercel@latest
Expand Down

0 comments on commit 25d94e0

Please sign in to comment.