workflows: lint: switch from apt to apt-get -y, add update

Using apt in scripts is discouraged. Also add an update to hopefully fix
the lua-check installation failure in CI.
This commit is contained in:
Matthias Schiffer 2022-01-25 22:14:28 +01:00
parent ae1187a29e
commit c75d90d9ab
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C

View File

@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt install lua-check
run: sudo apt-get -y update && sudo apt-get -y install lua-check
- name: Install example site
run: ln -s ./docs/site-example ./site
- name: Lint Lua code
@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt install shellcheck
run: sudo apt-get -y update && sudo apt-get -y install shellcheck
- name: Install example site
run: ln -s ./docs/site-example ./site
- name: Lint shell code