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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
any: ${{ steps.yaml_changes.outputs.any_changed }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Check Docker
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Lint
uses: reviewdog/[email protected]
with:
Expand All @@ -115,7 +115,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Validate
uses: reviewdog/[email protected]
with:
Expand All @@ -134,7 +134,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Lint
uses: reviewdog/[email protected]
with:
Expand All @@ -155,7 +155,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Lint
uses: reviewdog/[email protected]
with:
Expand All @@ -174,7 +174,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Lint
uses: docker-compose-linter/dclint-github-action/[email protected]
with:
Expand All @@ -195,7 +195,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Scan
uses: reviewdog/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.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 (85 > 80 characters) (line-length)

echo "cleanup_type=${{ github.event.inputs.cleanup_type || 'standard' }}"

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 (148 > 80 characters) (line-length)

PACKAGE_INFO=$(gh api packages/container/${{ env.REGISTRY }}/$PACKAGE_NAME 2>/dev/null || echo '{"size_in_bytes": 0, "version_count": 0}')

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 (101 > 80 characters) (line-length)

SIZE_GB=$(echo "scale=2; $SIZE_BYTES / 1024 / 1024 / 1024" | bc -l 2>/dev/null || echo "0")

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] trailing spaces (trailing-spaces)

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 (82 > 80 characters) (line-length)

gh api packages/container/${{ env.REGISTRY }}/$PACKAGE_NAME/versions | \

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 (83 > 80 characters) (line-length)

jq -r '.[] | "\(.name) - \(.created_at) - \(.size_in_bytes) bytes"' | \

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 (118 > 80 characters) (line-length)

head -20 >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || echo "Could not list versions" >> "$GITHUB_STEP_SUMMARY"

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 (95 > 80 characters) (line-length)

echo "**DRY RUN**: Would keep ${{ steps.params.outputs.keep_versions }} versions"

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 (100 > 80 characters) (line-length)

echo "**DRY RUN**: Would remove untagged: ${{ steps.params.outputs.remove_untagged }}"

Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
service: [unrealircd, atheme, unrealircd-webpanel]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Cleanup Parameters
id: params
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
deployments: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get Image Versions
id: images
run: |

Choose a reason for hiding this comment

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

🚫 [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2129:style:11:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
docker: ${{ steps.docker_changes.outputs.any_changed }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Check Docker
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
service: [unrealircd, atheme, unrealircd-webpanel]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
service: [unrealircd, atheme, unrealircd-webpanel]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Registry
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
service: [unrealircd, atheme, unrealircd-webpanel]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Clean Old Images ${{ matrix.service }}
uses: actions/delete-package-versions@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maintenance.yml

Choose a reason for hiding this comment

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

⚠️ [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2044:warning:6:22: For loops over find output are fragile. Use find -exec or a while read loop [shellcheck]

Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
issues: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Convert
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
service: [unrealircd, atheme, unrealircd-webpanel]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Registry Size Check ${{ matrix.service }}
id: registry_size
run: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
packages: read
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Repository Health Summary
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
is_prerelease: ${{ steps.version.outputs.is_prerelease }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Determine Version
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
needs: [validate, wait]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Generate Changelog
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
yaml: ${{ steps.yaml_changes.outputs.any_changed }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Check Docker
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
build-mode: none
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Initialize
uses: github/codeql-action/init@v3
with:
Expand All @@ -85,7 +85,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Review
uses: actions/dependency-review-action@v4
with:
Expand All @@ -105,7 +105,7 @@ jobs:
service: [unrealircd, atheme, unrealircd-webpanel]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Build for Security Scan
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Shell Script Security Analysis
run: |
echo "## 🔍 Shell Script Security Analysis"
Expand Down