Skip to content
Closed
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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Lint Dockerfile
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: docker/Dockerfile
ignore: DL3008
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.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@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
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@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.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@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1

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
Loading