Skip to content
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

Update OS and Go in workflows #1167

Merged
merged 1 commit into from
Sep 6, 2022
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
4 changes: 3 additions & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
# Apply this job if it is a PR and by OWNER with '/approve' comment
# TODO: the section contains('seokho-son jihoon-seo hermitkim1') needs to be updated or automated
if: ${{ github.event.issue.pull_request && (contains('seokho-son jihoon-seo hermitkim1', github.event.comment.user.login) || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/approve') }}
runs-on: ubuntu-18.04
# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
steps:
# Check author_association is OWNER
- name: Check author_association
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-amd64-container-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
# Job name is "Building"
name: Building

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

steps:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/make-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
update-swagger-doc:
name: Update Swagger doc
if: github.repository == 'cloud-barista/cb-tumblebug'
runs-on: ubuntu-18.04
# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.17' ]
go-version: [ '1.19' ]

steps:
- name: Set up Go ${{ matrix.go-version }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/prow-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +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' }}
runs-on: ubuntu-18.04
# This job runs on Ubuntu-latest (Ubuntu 20.04 LTS checked on 2022-09-06)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
runs-on: ubuntu-latest
# Execute action according to commands
steps:
# Check author_association
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish-multi-arch-container-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ jobs:

if: github.repository == 'cloud-barista/cb-tumblebug'

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

steps:
- name: Checkout source code
Expand Down