Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Desportes <williamdes@wdes.fr>2022-04-16 12:02:05 +0300
committerWilliam Desportes <williamdes@wdes.fr>2022-04-16 14:09:12 +0300
commitac5e3c4cc58c5c6c11d0f23b6b013ac83e94e452 (patch)
tree3045e97b704b4103d4922ac3eb5d2017f7976011 /.github
parent076a09917d1ea159e93b108a21e3c99e18ebe268 (diff)
Bump actions/checkout to v3
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint-and-analyse-php.yml14
-rw-r--r--.github/workflows/lint-docs.yml2
-rw-r--r--.github/workflows/other-tools.yml8
-rw-r--r--.github/workflows/test-selenium.yml6
-rw-r--r--.github/workflows/tests.yml18
5 files changed, 24 insertions, 24 deletions
diff --git a/.github/workflows/lint-and-analyse-php.yml b/.github/workflows/lint-and-analyse-php.yml
index 7215291307..9ef7bbcac9 100644
--- a/.github/workflows/lint-and-analyse-php.yml
+++ b/.github/workflows/lint-and-analyse-php.yml
@@ -12,7 +12,7 @@ jobs:
lint-node:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 12
@@ -20,7 +20,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: yarn cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -36,7 +36,7 @@ jobs:
lint-php-files:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Use php 7.1
uses: shivammathur/setup-php@v2
with:
@@ -47,14 +47,14 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Cache coding-standard
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: .phpcs-cache
key: phpcs-cache
@@ -71,7 +71,7 @@ jobs:
analyse-php:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Use php 7.2
uses: shivammathur/setup-php@v2
with:
@@ -81,7 +81,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
diff --git a/.github/workflows/lint-docs.yml b/.github/workflows/lint-docs.yml
index dac27f8263..96bd40d6e5 100644
--- a/.github/workflows/lint-docs.yml
+++ b/.github/workflows/lint-docs.yml
@@ -12,7 +12,7 @@ jobs:
lint-docs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Lint phpdoc blocks
uses: sudo-bot/action-doctum@v5
with:
diff --git a/.github/workflows/other-tools.yml b/.github/workflows/other-tools.yml
index c7550a335f..557fce7cf6 100644
--- a/.github/workflows/other-tools.yml
+++ b/.github/workflows/other-tools.yml
@@ -12,7 +12,7 @@ jobs:
build-documentation:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.6'
@@ -24,7 +24,7 @@ jobs:
build-release:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install gettext
run: sudo apt-get install -y gettext
- name: Use php 7.1
@@ -37,7 +37,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -52,7 +52,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: yarn cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
diff --git a/.github/workflows/test-selenium.yml b/.github/workflows/test-selenium.yml
index 45eed9d11f..8956912d22 100644
--- a/.github/workflows/test-selenium.yml
+++ b/.github/workflows/test-selenium.yml
@@ -53,7 +53,7 @@ jobs:
os: [ubuntu-latest]
db-server: ["mysql:5.7"]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Refresh apt cache
run: sudo apt-get update
- name: Install gettext
@@ -69,7 +69,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -84,7 +84,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: yarn cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index ce7f8622de..29c26de139 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -25,7 +25,7 @@ jobs:
- { php-version: '7', experimental: true, arch: 'ppc64le', exclude-phpunit-groups: 'selenium,extension-iconv' }
- { php-version: '7', experimental: false, arch: 's390x', exclude-phpunit-groups: 'selenium,extension-iconv,32bit-incompatible' }
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Write script
# tcpdf allowed memory exhausted needs the memory_limit workaround
# musl-locales and musl-locales-lang are needed to run some locale specific tests
@@ -69,7 +69,7 @@ jobs:
include:
- { php-version: 'nightly', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
# Fetch some commits for Scrutinizer coverage upload
fetch-depth: 15
@@ -87,7 +87,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -127,7 +127,7 @@ jobs:
os: [ubuntu-latest]
extension: ["dbase", "recode"]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
# Fetch some commits for Scrutinizer coverage upload
fetch-depth: 15
@@ -145,7 +145,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -184,7 +184,7 @@ jobs:
php-version: ["7.4"]
os: [ubuntu-latest]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install gettext
run: sudo apt-get install -y gettext
- name: Generate mo files
@@ -198,7 +198,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -215,7 +215,7 @@ jobs:
name: Test javascript files
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 12
@@ -223,7 +223,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: yarn cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}