Add jq installation step
parent
e015dda3a4
commit
ea53ea31bb
|
@ -3,7 +3,13 @@ on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
Check-Last-Time:
|
Check-Last-Time:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
env:
|
||||||
|
DEBIAN_FRONTEND: noninteractive
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install jq
|
||||||
|
run: |
|
||||||
|
apt-get update -y
|
||||||
|
apt-get install -y jq
|
||||||
- name: Check last repository build time
|
- name: Check last repository build time
|
||||||
id: last-time
|
id: last-time
|
||||||
run: curl -s https://hub.docker.com/v2/repositories/drunkendog/standard-build-actions/tags/latest
|
run: curl -s https://hub.docker.com/v2/repositories/drunkendog/standard-build-actions/tags/latest
|
||||||
|
|
Loading…
Reference in New Issue