-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Freezes downloading setup stuff #2618
Labels
kind/bug
Something isn't working
Comments
i seem to have the same issue.
|
i seem to have fixed my issue. make sure you include the -y yes flag in your upgrade commands. this is my workflow file that fetches sqlite3 and then checks sql syntax. name: Check SQL Syntax
on: [push, pull_request]
jobs:
check-sql-syntax:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install depends
run: |
sudo apt update && sudo apt upgrade -y; sudo apt install sqlite3 -y
- name: Find and check SQL syntax
run: |
for file in $(find ./database/sql -name "*.sql"); do
sqlite3 :memory: < "$file" || exit 1
done |
@MichaelSjogren Thank you. you saved my day. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report info
Command used with act
Describe issue
Gets to here then goes no further. Just stops. -v provides no more information. Have waited a whole day.
Link to GitHub repository
No response
Workflow content
Relevant log output
Additional information
No response
The text was updated successfully, but these errors were encountered: