Skip to content

Commit

Permalink
update-ubuntu_latest-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Doc999tor committed Jan 11, 2025
1 parent 529f938 commit 4856eba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Get Node.js
Expand All @@ -21,7 +21,7 @@ jobs:
- run: npm run build

python-test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.7, 3.8]
Expand All @@ -37,7 +37,7 @@ jobs:
js-test:
needs: [build, python-test]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
node: [ '10', '12', '14' , '16' ] # Major releases as described in https://nodejs.org/en/download/releases/
Expand All @@ -54,7 +54,7 @@ jobs:
publish:
needs: [build, python-test, js-test]
if: ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event_name == 'schedule'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit 4856eba

Please sign in to comment.