Skip to content
Merged
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
@@ -1,6 +1,6 @@
---
name: Docker
on:

Check warning on line 3 in .github/workflows/docker.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 @@ -15,12 +15,12 @@
dockerfile_changed: ${{ steps.filter.outputs.docker }}
steps:
- name: Checkout repo ⤵️
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

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

View workflow job for this annotation

GitHub Actions / Lints and Scans

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

# test that the Dockerfile builds at all
# CircleCI handles pushes for now
- name: Build Image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0

Check warning on line 23 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

23:81 [comments] too few spaces before comment: expected 2
with:
file: docker/Dockerfile
context: .
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Lint Dockerfile
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.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
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

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
@@ -1,7 +1,7 @@
---
name: Update Kernels

on:

Check warning on line 4 in .github/workflows/update-kernels.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

4:1 [truthy] truthy value should be one of [false, true]
workflow_dispatch:
schedule:
- cron: '30 6 * * *'
Expand All @@ -20,7 +20,7 @@
id-token: write
steps:
- name: Checkout crawler
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

Check warning on line 23 in .github/workflows/update-kernels.yml

View workflow job for this annotation

GitHub Actions / Lints and Scans

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

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