diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index b92650e..88abf53 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -10,7 +10,7 @@ jobs: name: Add issue to project runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v0.6.1 + - uses: actions/add-to-project@v1 with: # You can target a repository in a different organization # to the issue diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 684b888..a722163 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - operating-system: [ ubuntu-22.04 ] + operating-system: [ ubuntu-latest ] language: [ 'javascript' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support @@ -33,7 +33,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -44,7 +44,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -58,4 +58,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index 32f175c..4238971 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - operating-system: [ubuntu-22.04] + operating-system: [ubuntu-latest] php-version: ['8.2', '8.3'] name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 0342cfa..b5331cf 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - operating-system: [ubuntu-24.04] + operating-system: [ubuntu-latest] php-version: ['8.2', '8.3'] name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }} diff --git a/.github/workflows/publish-to-ter.yml b/.github/workflows/publish-to-ter.yml index 51aa957..b896ae0 100644 --- a/.github/workflows/publish-to-ter.yml +++ b/.github/workflows/publish-to-ter.yml @@ -8,7 +8,7 @@ jobs: publish: name: Publish new version to TER if: startsWith(github.ref, 'refs/tags/') - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: TYPO3_EXTENSION_KEY: ${{ secrets.TYPO3_EXTENSION_KEY }} TYPO3_API_TOKEN: ${{ secrets.TYPO3_TER_ACCESS_TOKEN }} @@ -40,7 +40,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: 8.3 extensions: intl, mbstring, json, zip, curl tools: composer:v2