Skip to content

Commit

Permalink
run on latest ubuntu/node
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Sep 4, 2024
1 parent 34797ba commit c3ff4ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
push_to_registry:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'failure' }}
steps:
# Checkout latest or specific tag
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
# Run npm install
- name: Install and build npm
run: |
Expand All @@ -78,7 +78,7 @@ jobs:
deploy_via_ssh:
needs: push_to_registry
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'failure' }}
steps:
# Checkout latest or specific tag
Expand Down

0 comments on commit c3ff4ab

Please sign in to comment.