Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
dockerfile_changed: ${{ steps.filter.outputs.docker }}
steps:
- name: Checkout repo ⤵️
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# test that the Dockerfile builds at all
# CircleCI handles pushes for now
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo ⤵️
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Lint Dockerfile
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Release

on:

Check warning on line 4 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

4:1 [truthy] truthy value should be one of [false, true]
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
Expand All @@ -11,23 +11,23 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

Check warning on line 14 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

14:73 [comments] too few spaces before comment: expected 2
with:
fetch-depth: 0

- name: Login to Docker Hub
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0

Check warning on line 19 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

19:76 [comments] too few spaces before comment: expected 2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_SECRET }}

- name: Set up QEMU
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0

Check warning on line 25 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

25:81 [comments] too few spaces before comment: expected 2
with:
platforms: 'amd64,arm64'

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0

Check warning on line 30 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

30:83 [comments] too few spaces before comment: expected 2

- name: Build and push container images
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Test
on:

Check warning on line 3 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

3:1 [truthy] truthy value should be one of [false, true]
pull_request:
branches:
- main
Expand All @@ -14,8 +14,8 @@
outputs:
crawler_changed: ${{ steps.filter.outputs.crawler }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

Check warning on line 17 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

17:73 [comments] too few spaces before comment: expected 2
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2

Check warning on line 18 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

18:75 [comments] too few spaces before comment: expected 2
id: filter
with:
filters: |
Expand All @@ -29,12 +29,12 @@
if: needs.paths-filter.outputs.crawler_changed == 'true'
steps:
- name: Checkout repo ⤵️
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

Check warning on line 32 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

32:73 [comments] too few spaces before comment: expected 2

- name: Run crawler
id: crawler
uses: ./

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2

Check warning on line 38 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

38:80 [comments] too few spaces before comment: expected 2
with:
path: ${{ steps.crawler.outputs.json }}
2 changes: 1 addition & 1 deletion .github/workflows/update-kernels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id-token: write
steps:
- name: Checkout crawler
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Run crawler for x86_64
id: crawler_x86_64
Expand Down