Skip to content
This repository was archived by the owner on Dec 30, 2025. It is now read-only.
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
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[warning] truthy value should be one of [false, true] (truthy)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (92 > 80 characters) (line-length)

if: (needs.changes.outputs.docker == 'true' || github.event_name == 'workflow_dispatch')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (105 > 80 characters) (line-length)

org.opencontainers.image.description=IRC server infrastructure for All Things Linux Community

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (92 > 80 characters) (line-length)

PR_VERSION="pr-${{ github.event.number }}-$(echo "${{ github.sha }}" | cut -c1-7)"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (92 > 80 characters) (line-length)

context: ./${{ matrix.service == 'unrealircd-webpanel' && '.' || matrix.service }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (143 > 80 characters) (line-length)

file: ./${{ matrix.service == 'unrealircd-webpanel' && 'web/webpanel/Containerfile' || format('{0}/Containerfile', matrix.service) }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (151 > 80 characters) (line-length)

trivy_target: ./${{ matrix.service == 'unrealircd-webpanel' && 'web/webpanel/Containerfile' || format('{0}/Containerfile', matrix.service) }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (81 > 80 characters) (line-length)

images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.service }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (105 > 80 characters) (line-length)

org.opencontainers.image.description=IRC server infrastructure for All Things Linux Community

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (92 > 80 characters) (line-length)

context: ./${{ matrix.service == 'unrealircd-webpanel' && '.' || matrix.service }}

Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
echo "✅ Docker build validation for ${{ matrix.service }} completed successfully"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (91 > 80 characters) (line-length)

echo "🔍 Build cache updated for faster future builds"
- name: Scan Containerfile ${{ matrix.service }}
uses: reviewdog/action-trivy@v1.13.10
uses: reviewdog/action-trivy@v1.14.0
continue-on-error: true
with:
github_token: ${{ github.token }}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- name: Scan Final Image ${{ matrix.service }}
if: always()
uses: reviewdog/action-trivy@v1.13.10
uses: reviewdog/action-trivy@v1.14.0
continue-on-error: true
with:
github_token: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
load: true
tags: irc-atl-chat-${{ matrix.service }}:security-scan
- name: Scan Container Image
uses: reviewdog/action-trivy@v1.13.10
uses: reviewdog/action-trivy@v1.14.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
trivy_command: image
Expand Down