バージョンの更新(PHP8.4-rc → PHP8.4, Ubuntu-22.04 → Ubuntu-24.04) #1072
+13
−13
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
以下は Copilot の自動生成
This pull request includes multiple updates to the GitHub Actions workflows to upgrade the Ubuntu version and adjust the PHP versions used in the matrix strategy. Additionally, it replaces the
apt-fast
package manager withapt
for installing dependencies.Workflow updates:
Updated the Ubuntu version from
22.04
to24.04
in several workflow files to ensure compatibility with the latest environment. (.github/workflows/coverage.yml
,.github/workflows/deploy.yml
,.github/workflows/dockerbuild-and-push.yml
,.github/workflows/dockerbuild.yml
,.github/workflows/e2e-tests.yml
,.github/workflows/penetration-tests.yml
,.github/workflows/unit-tests.yml
) [1] [2] [3] [4] [5] [6] [7]Updated the PHP versions in the matrix strategy to remove the release candidate (
8.4-rc
) and replace it with the stable version (8.4
). (.github/workflows/dockerbuild-and-push.yml
,.github/workflows/dockerbuild.yml
,.github/workflows/e2e-tests.yml
,.github/workflows/unit-tests.yml
) [1] [2] [3] [4]Dependency installation updates:
apt-fast
withapt
for installing dependencies to simplify the setup process. (.github/workflows/coverage.yml
,.github/workflows/e2e-tests.yml
,.github/workflows/penetration-tests.yml
,.github/workflows/unit-tests.yml
) [1] [2] [3] [4] [5]