Skip to content

Commit 6e4a0a8

Browse files
committed
fix: Update actions in workflows
1 parent 423dd23 commit 6e4a0a8

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/functionaltests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php-version: [ 8.0, 8.1, 8.2, 8.3 ]
14-
flow-version: [ 8.0, '9.0.0-beta' ]
14+
flow-version: [ 8.0, 9.0 ]
1515
exclude:
1616
- php-version: 8.0
17-
flow-version: '9.0.0-beta'
17+
flow-version: 9.0
1818
- php-version: 8.1
19-
flow-version: '9.0.0-beta'
19+
flow-version: 9.0
2020

2121
env:
2222
APP_ENV: true
@@ -31,7 +31,7 @@ jobs:
3131
ini-values: opcache.fast_shutdown=0
3232

3333
- name: "[1/5] Create composer project - Cache composer dependencies"
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.composer/cache
3737
key: php-${{ matrix.php-version }}-flow-${{ matrix.flow-version }}-composer-${{ hashFiles('composer.json') }}
@@ -55,7 +55,7 @@ jobs:
5555
working-directory: ${{ env.FLOW_DIST_FOLDER }}
5656

5757
- name: Checkout code
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v4
5959
with:
6060
path: ${{ env.FLOW_DIST_FOLDER }}/DistributionPackages/Netlogix.Sentry
6161

.github/workflows/unittests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php-version: [ 8.0, 8.1, 8.2, 8.3 ]
14-
flow-version: [ 8.3, '9.0.0-beta' ]
14+
flow-version: [ 8.3, 9.0 ]
1515
exclude:
1616
- php-version: 8.0
17-
flow-version: '9.0.0-beta'
17+
flow-version: 9.0
1818
- php-version: 8.1
19-
flow-version: '9.0.0-beta'
19+
flow-version: 9.0
2020

2121
env:
2222
APP_ENV: true
@@ -31,7 +31,7 @@ jobs:
3131
ini-values: opcache.fast_shutdown=0
3232

3333
- name: "[1/5] Create composer project - Cache composer dependencies"
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.composer/cache
3737
key: php-${{ matrix.php-version }}-flow-${{ matrix.flow-version }}-composer-${{ hashFiles('composer.json') }}
@@ -55,7 +55,7 @@ jobs:
5555
working-directory: ${{ env.FLOW_DIST_FOLDER }}
5656

5757
- name: Checkout code
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v4
5959
with:
6060
path: ${{ env.FLOW_DIST_FOLDER }}/DistributionPackages/Netlogix.Sentry
6161

0 commit comments

Comments
 (0)