Skip to content

Commit

Permalink
Update GitHub Actions container to ubuntu 22.04 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
ynojima authored Dec 16, 2023
1 parent e0d7c15 commit fd89ad1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
update:
name: Update files
# Update job evaluates changes introduced in current revision and create cascading changes (commits) if necessary
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
# Checkout target revision from git repository
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
deploy:
name: Deploy localized site to GitHub pages
# Deploy a localized site to the GitHub pages
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
# Checkout target revision from git repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-glossary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
create-glossary:
name: Create glossary
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
# Checkout target revision from git repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-glossary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
delete-glossary:
name: Delete glossary
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
# Checkout target revision from git repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/list-glossaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
list-glossary:
name: List glossaries
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
# Checkout target revision from git repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: pull_request_target
jobs:
deploy:
name: Deploy localized site preview to surge.sh
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout base branch
# To avoid GitHub Secrets compromise, checkout base branch to get reliable (untainted) build scripts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: Sync
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
# Checkout target revision from git repository
Expand Down

0 comments on commit fd89ad1

Please sign in to comment.