Skip to content

update:github actionsのimageをubuntu24へ更新 #6363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Setup pcov
run: |
sudo apt-fast install -y php8.3-pcov
sudo apt-get install -y php8.3-pcov
sudo phpenmod -s cli pcov

- name: Initialize Composer
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
path: coverage1.xml
codeception:
name: Codeception
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

- name: Setup pcov
run: |
sudo apt-fast install -y php8.3-pcov
sudo apt-get install -y php8.3-pcov
sudo phpenmod -s cli pcov

- name: Setup codeception
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deny-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
deploy:
name: Deny check
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
postgres:
image: postgres:14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
postgres:
image: postgres:14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-22.04 ]
operating-system: [ ubuntu-24.04 ]
php: [ '8.1', '8.2', '8.3' ]
db: [ pgsql ]
group: [ admin01 ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test-throttling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
codeception:
name: Codeception
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
codeception:
name: Codeception
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/plugin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-22.04 ]
operating-system: [ ubuntu-24.04 ]
php: [ '8.1' ]
db: [ pgsql, mysql ]
method:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
env:
PGPASSWORD: 'password'
run: |
sudo apt-fast install -y postgresql-client
sudo apt-get install -y postgresql-client
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"

- name: Update baseinfo with mysql
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-22.04 ]
operating-system: [ ubuntu-24.04 ]
php: [ '8.1' ]
db: [ pgsql, mysql ]
method:
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
env:
PGPASSWORD: 'password'
run: |
sudo apt-fast install -y postgresql-client
sudo apt-get install -y postgresql-client
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"

- name: Update baseinfo with mysql
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-22.04 ]
operating-system: [ ubuntu-24.04 ]
php: [ '8.1' ]
db: [ pgsql, mysql ]
method:
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
env:
PGPASSWORD: 'password'
run: |
sudo apt-fast install -y postgresql-client
sudo apt-get install -y postgresql-client
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"

- name: Update baseinfo with mysql
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-22.04 ]
operating-system: [ ubuntu-24.04 ]
php: [ '8.1' ]
db: [ pgsql, mysql ]
method:
Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:
env:
PGPASSWORD: 'password'
run: |
sudo apt-fast install -y postgresql-client
sudo apt-get install -y postgresql-client
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"

- name: Update baseinfo with mysql
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-22.04 ]
operating-system: [ ubuntu-24.04 ]
php: [ '8.1', '8.2', '8.3' ]
db: [ mysql, pgsql, sqlite3 ]
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vaddy-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
vaddy:
name: VAddy
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vaddy-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
vaddy:
name: VAddy
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vaddyscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: push
jobs:
vaddy:
name: VAddy
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
# matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/zaproxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ on:
jobs:
prune:
name: Prune Docker images
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Prune Docker images
run: docker image prune --force

build:
name: Build
needs: prune
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@master
Expand All @@ -44,7 +44,7 @@ jobs:
scan:
name: Scan
needs: build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
name: Merge alerts
needs: scan
if: ${{ always() }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
Expand Down
Loading