Skip to content

Commit

Permalink
Updated Github actions' versions
Browse files Browse the repository at this point in the history
  • Loading branch information
konradoboza committed Jul 23, 2024
1 parent e86b4c0 commit 3818bc8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
14 changes: 6 additions & 8 deletions skeleton/ibexa-oss/.github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
strategy:
matrix:
php:
- '8.1'
- '8.3'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand All @@ -26,7 +26,7 @@ jobs:
extensions: 'pdo_sqlite, gd'
tools: cs2pr

- uses: ramsey/composer-install@v2
- uses: ramsey/composer-install@v3
with:
dependency-versions: "highest"

Expand All @@ -37,7 +37,7 @@ jobs:
name: Deptrac
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Deptrac
uses: smoench/deptrac-action@master

Expand All @@ -50,12 +50,10 @@ jobs:
fail-fast: false
matrix:
php:
- '7.4'
- '8.1'
- '8.2'
- '8.3'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand Down
6 changes: 3 additions & 3 deletions skeleton/ibexa-oss/.github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ on:
jobs:
frontend-test:
name: Frontend build test
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-22.04"
timeout-minutes: 5

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
- run: yarn install
Expand Down

0 comments on commit 3818bc8

Please sign in to comment.