Skip to content

Commit

Permalink
[update] ubuntuのバージョンを開発環境に合わせて更新
Browse files Browse the repository at this point in the history
  • Loading branch information
eito2002 committed Oct 9, 2024
1 parent d754842 commit 59e1465
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-routing-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8.2
python-version: 3.10

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3=3.8.2-0ubuntu2 python3-pip=20.0.2-5ubuntu1.10
sudo apt-get install -y python3-pip
- name: Upgrade pip and install pip-tools
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-and-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8.2
python-version: 3.10

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3=3.8.2-0ubuntu2 python3-pip=20.0.2-5ubuntu1.10
sudo apt-get install -y python3-pip
- name: Upgrade pip and install pip-tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM ubuntu:22.04

# 非対話的モードを設定
ENV DEBIAN_FRONTEND=noninteractive
Expand Down

0 comments on commit 59e1465

Please sign in to comment.