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