Skip to content

Commit

Permalink
Update dev-deploy.yml and changed ubuntu version to latest (#575)
Browse files Browse the repository at this point in the history
* Update dev-deploy.yml and changed ubuntu version to latest

https://stackoverflow.com/questions/71027513/all-github-action-jobs-are-queued-and-never-running

Testing possible solution to endlessly running workflow

* ubuntu:latest to ubuntu-latest
  • Loading branch information
kevinmonisit committed Sep 3, 2023
1 parent 84630f6 commit c87a74d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
code-quality:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

strategy:
fail-fast: true
Expand All @@ -25,7 +25,7 @@ jobs:
- run: npm install
- run: npm run lint
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

strategy:
fail-fast: true
Expand Down

0 comments on commit c87a74d

Please sign in to comment.