Skip to content

Commit

Permalink
Specify Ubuntu version as 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
yunkon-kim committed Dec 13, 2023
1 parent bbac6d6 commit 6bf5786
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
# Apply this job if it is a PR and by OWNER with '/approve' comment
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/approve') }}

# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
# Check the commenter is a member of the maintainer team of this repo
- name: Extract Repository Name
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:

if: github.repository == 'cloud-barista/cm-beetle'

# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout source code
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ jobs:
# The job key (i.e., ID) is "build-source-code"
build-source-code:
# Job name is "Building source code"
# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
name: Build source code
strategy:
matrix:
go-version: ["1.21"]
os: [ubuntu-20.04]
os: [ubuntu-22.04]
#os: [ubuntu-22.04, ubuntu-20.04, windows-2022, windows-2019]
runs-on: ${{matrix.os}}
steps:
Expand All @@ -48,9 +50,9 @@ jobs:
# Job name is "Build a container image"
name: Build a container image

# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/make-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
update-swagger-doc:
name: Update Swagger doc
if: github.repository == 'cloud-barista/cm-beetle'
# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
go-version: [ '1.21' ]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prow-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
execute:
# Execute when author_association of the comment is OWNER or MEMBER
if: ${{ github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' }}
# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
# Execute action according to commands
steps:
# Check author_association
Expand Down

0 comments on commit 6bf5786

Please sign in to comment.