We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ba7e8 commit adfbcaeCopy full SHA for adfbcae
1 file changed
.github/workflows/buildah.yml
@@ -46,6 +46,8 @@ jobs:
46
needs: detect
47
if: needs.detect.outputs.images != '[]'
48
runs-on: arc-dind
49
+ container:
50
+ image: ghcr.io/makeitworkcloud/runner:latest
51
strategy:
52
matrix:
53
image: ${{ fromJson(needs.detect.outputs.images) }}
@@ -54,19 +56,12 @@ jobs:
54
56
- name: Checkout
55
57
uses: actions/checkout@v4
58
- - name: Install dependencies
59
+ - name: Install hadolint
60
run: |
- apt-get update
- apt-get install -y buildah
61
curl -sSL -o /usr/local/bin/hadolint \
62
https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64
63
chmod +x /usr/local/bin/hadolint
64
65
- - name: Install Python
66
- uses: actions/setup-python@v5
67
- with:
68
- python-version: '3.12'
69
-
70
- name: Run pre-commit
71
uses: pre-commit/action@v3.0.1
72
0 commit comments