Skip to content

Commit

Permalink
Update GitHub Actions workflow setup
Browse files Browse the repository at this point in the history
Switched from `actions/setup-sqlite@v1` to manual SQLite installation via `apt-get` to ensure compatibility with the latest SQLite version and ease future maintenance. Also updated `actions/checkout` to v3 for improved performance and new features. This change helps maintain current dependencies and leverages updated action features.
  • Loading branch information
eliasjpr committed Aug 12, 2024
1 parent 1d96415 commit 5a2b767
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/crystal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,9 @@ jobs:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v2
- uses: actions/setup-sqlite@v1
with:
sqlite-version: 3.40.0
sqlite-year: 2022
- uses: actions/checkout@v3
- name: Install SQLite
run: sudo apt-get install -y sqlite3
- name: Install dependencies
run: shards install
- name: Check code style
Expand Down

0 comments on commit 5a2b767

Please sign in to comment.