diff --git a/.github/workflows/artifact.yml b/.github/workflows/artifact.yml index cc7185df..71fbafa8 100644 --- a/.github/workflows/artifact.yml +++ b/.github/workflows/artifact.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get Info run: | echo "version=$(grep -Eo '[0-9]+(\.[0-9]+)+' CHANGELOG.md | head -n 1)" >> $GITHUB_OUTPUT @@ -40,7 +40,7 @@ jobs: cd $cwd tar -czvf onlyoffice.tar.gz onlyoffice - name: Upload Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: onlyoffice path: onlyoffice.tar.gz \ No newline at end of file diff --git a/.github/workflows/lint-eslint.yml b/.github/workflows/lint-eslint.yml index 007c22e8..813cb285 100644 --- a/.github/workflows/lint-eslint.yml +++ b/.github/workflows/lint-eslint.yml @@ -19,12 +19,12 @@ jobs: working-directory: ./js steps: - name: Install NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} - name: Code Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Dependencies run: npm ci diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml index d8f6daff..72537efb 100644 --- a/.github/workflows/lint-php.yml +++ b/.github/workflows/lint-php.yml @@ -19,7 +19,7 @@ jobs: name: php-lint steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up php ${{ matrix.php-versions }} uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/lint-phpcs.yml b/.github/workflows/lint-phpcs.yml index 7e78bc97..2894fe26 100644 --- a/.github/workflows/lint-phpcs.yml +++ b/.github/workflows/lint-phpcs.yml @@ -16,7 +16,7 @@ jobs: name: php-cs steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: