From 368549043da4ab55bbf24fdfa92a403573c6d4de Mon Sep 17 00:00:00 2001 From: Interested Deving Date: Mon, 11 May 2026 02:36:52 -0700 Subject: [PATCH 1/4] chore(deps): update workflow dependencies in distro-matrix.yml --- .github/workflows/distro-matrix.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/distro-matrix.yml b/.github/workflows/distro-matrix.yml index cfba7f6..517a530 100644 --- a/.github/workflows/distro-matrix.yml +++ b/.github/workflows/distro-matrix.yml @@ -25,20 +25,20 @@ jobs: context: .github/images/voidlinux-ci continue-on-error: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set lowercase owner run: echo "OWNER=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV" - name: Log in to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v7 with: context: ${{ matrix.context }} push: true @@ -49,4 +49,4 @@ jobs: org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }} build-args: | VOIDLINUX_REPO=https://repo.voidlinux.org/current/x86_64 - # Updated to a valid repository URL + # Updated to a valid repository URL \ No newline at end of file From de75d5499c7613e747ea4b146856a1c88805f8f0 Mon Sep 17 00:00:00 2001 From: Interested Deving Date: Mon, 11 May 2026 02:36:53 -0700 Subject: [PATCH 2/4] chore(deps): update workflow dependencies in build-ci-images.yml --- .github/workflows/build-ci-images.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-ci-images.yml b/.github/workflows/build-ci-images.yml index a07a401..54973d0 100644 --- a/.github/workflows/build-ci-images.yml +++ b/.github/workflows/build-ci-images.yml @@ -19,20 +19,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set lowercase owner run: echo "OWNER=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV" - name: Log in to GHCR - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v7 with: context: .github/images/opensuse-tumbleweed-ci push: true @@ -53,20 +53,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set lowercase owner run: echo "OWNER=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV" - name: Log in to GHCR - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v7 with: context: .github/images/voidlinux-ci push: true @@ -75,4 +75,4 @@ jobs: ghcr.io/interested-deving-1896/voidlinux-ci:${{ github.sha }} labels: | org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }} - org.opencontainers.image.description=Void Linux with tar+git+sh for GitHub Actions + org.opencontainers.image.description=Void Linux with tar+git+sh for GitHub Actions \ No newline at end of file From 490eea60c94927d5a254a68ba6c03a8c7edd5d06 Mon Sep 17 00:00:00 2001 From: Interested Deving Date: Mon, 11 May 2026 02:36:54 -0700 Subject: [PATCH 3/4] chore(deps): update workflow dependencies in ci.yml --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2f66aa..92ebb2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: "1.22" cache: true @@ -55,16 +55,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: "1.22" cache: true - name: golangci-lint - uses: golangci/golangci-lint-action@v6 + uses: golangci/golangci-lint-action@v9 with: version: latest args: --timeout=5m @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: ShellCheck uses: ludeeus/action-shellcheck@master @@ -86,4 +86,4 @@ jobs: uses: ludeeus/action-shellcheck@master with: scandir: "./tests/integration" - severity: warning + severity: warning \ No newline at end of file From 1a26760054672e472c026215f20766e67e18aa71 Mon Sep 17 00:00:00 2001 From: Interested Deving Date: Tue, 19 May 2026 19:35:59 -0700 Subject: [PATCH 4/4] Fix golangci-lint configuration version issue [skip ci] Co-authored-by: AI Resolver Co-authored-by: Ona --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92ebb2b..10bc17a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,6 +68,7 @@ jobs: with: version: latest args: --timeout=5m + config: .golangci.yml # Ensure the config file is specified shellcheck: name: Shell scripts @@ -86,4 +87,4 @@ jobs: uses: ludeeus/action-shellcheck@master with: scandir: "./tests/integration" - severity: warning \ No newline at end of file + severity: warning