Skip to content

Commit

Permalink
Merge pull request #1900 from tomudding/chore/update-github-actions
Browse files Browse the repository at this point in the history
chore: update GitHub Actions to avoid deprecation warnings
  • Loading branch information
tomudding authored Sep 11, 2024
2 parents 1880ea2 + 1bfdefa commit 1e3ddce
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ concurrency:

jobs:
php-codesniffer:
uses: 'GEWIS/gewisphp-coding-standards/.github/workflows/coding-standards.yml@1.1.0'
uses: 'GEWIS/gewisphp-coding-standards/.github/workflows/coding-standards.yml@1.2.0'
with:
php-version: '8.3'
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-analysis-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout head branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -50,7 +50,7 @@ jobs:
git checkout --detach temp-phpstanpr
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Load environment variables
uses: c-py/action-dotenv-to-setenv@v3
Expand All @@ -77,7 +77,7 @@ jobs:
git checkout -
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Load environment variables
uses: c-py/action-dotenv-to-setenv@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-analysis-psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout head branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -36,7 +36,7 @@ jobs:
git checkout --detach temp-psalmpr
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Load environment variables
uses: c-py/action-dotenv-to-setenv@v3
Expand All @@ -56,7 +56,7 @@ jobs:
git checkout -
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Load environment variables
uses: c-py/action-dotenv-to-setenv@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -31,7 +31,7 @@ jobs:
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Extract configuration files
run: |
Expand Down

0 comments on commit 1e3ddce

Please sign in to comment.