Skip to content

Commit

Permalink
update GHA runners to ubuntu latest (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaeng authored Apr 28, 2023
1 parent d989f2b commit 79e331b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
delivery-nodejs:
name: Prepare for NPM
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -35,7 +35,7 @@ jobs:

delivery-python:
name: Prepare for PyPI
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6]
Expand All @@ -58,7 +58,7 @@ jobs:
delivery-github:
name: Delivery to GitHub
needs: [delivery-nodejs, delivery-python]
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download NPM Artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [ push, pull_request ]

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 79e331b

Please sign in to comment.