From c989c303d5136dcaf8f434321d3bc3316e19c180 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 21:47:39 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 3 updates Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `aws-actions/configure-aws-credentials` from 5.1.0 to 5.1.1 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v5.1.0...v5.1.1) Updates `golangci/golangci-lint-action` from 9.0.0 to 9.1.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v9.0.0...v9.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: 5.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/analyze.yaml | 2 +- .github/workflows/boilerplate.yaml | 2 +- .github/workflows/build.yaml | 2 +- .github/workflows/bump-deps.yaml | 2 +- .github/workflows/donotsubmit.yaml | 2 +- .github/workflows/e2e.yaml | 2 +- .github/workflows/ecr-auth.yaml | 8 ++++---- .github/workflows/ghcr-auth.yaml | 2 +- .github/workflows/presubmit.yaml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/style.yaml | 6 +++--- .github/workflows/test.yaml | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/analyze.yaml b/.github/workflows/analyze.yaml index 9e8eab119..cc6bfa8ed 100644 --- a/.github/workflows/analyze.yaml +++ b/.github/workflows/analyze.yaml @@ -17,7 +17,7 @@ jobs: name: Analyze runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/boilerplate.yaml b/.github/workflows/boilerplate.yaml index b483176b3..9e811e5f9 100644 --- a/.github/workflows/boilerplate.yaml +++ b/.github/workflows/boilerplate.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - uses: chainguard-dev/actions/boilerplate@main with: diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fa9bc17f4..f45ba2cf5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/bump-deps.yaml b/.github/workflows/bump-deps.yaml index d3a59f6ad..2fcc5a7bf 100644 --- a/.github/workflows/bump-deps.yaml +++ b/.github/workflows/bump-deps.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/donotsubmit.yaml b/.github/workflows/donotsubmit.yaml index 1ec0f2617..68e7ab7ab 100644 --- a/.github/workflows/donotsubmit.yaml +++ b/.github/workflows/donotsubmit.yaml @@ -11,5 +11,5 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: chainguard-dev/actions/donotsubmit@main diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 271d60ca7..723185747 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/ecr-auth.yaml b/.github/workflows/ecr-auth.yaml index 6ffd06d32..11c183081 100644 --- a/.github/workflows/ecr-auth.yaml +++ b/.github/workflows/ecr-auth.yaml @@ -18,7 +18,7 @@ jobs: AWS_REGION: us-east-2 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -28,7 +28,7 @@ jobs: run: go install . - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v5.1.0 + uses: aws-actions/configure-aws-credentials@v5.1.1 with: role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT }}:role/federated-ecr-readonly aws-region: ${{ env.AWS_REGION }} @@ -57,7 +57,7 @@ jobs: AWS_REGION: us-east-2 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -67,7 +67,7 @@ jobs: run: go install . - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v5.1.0 + uses: aws-actions/configure-aws-credentials@v5.1.1 with: role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT }}:role/federated-ecr-readonly aws-region: ${{ env.AWS_REGION }} diff --git a/.github/workflows/ghcr-auth.yaml b/.github/workflows/ghcr-auth.yaml index faf91f7b6..678a76af7 100644 --- a/.github/workflows/ghcr-auth.yaml +++ b/.github/workflows/ghcr-auth.yaml @@ -14,7 +14,7 @@ jobs: krane: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/presubmit.yaml b/.github/workflows/presubmit.yaml index 02e4db513..c172c5707 100644 --- a/.github/workflows/presubmit.yaml +++ b/.github/workflows/presubmit.yaml @@ -26,7 +26,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 93c12fcdd..062d65976 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: outputs: hashes: ${{ steps.hash.outputs.hashes }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Unshallow run: git fetch --prune --unshallow - uses: actions/setup-go@v6 diff --git a/.github/workflows/style.yaml b/.github/workflows/style.yaml index bfa8cf9d2..eb65ec984 100644 --- a/.github/workflows/style.yaml +++ b/.github/workflows/style.yaml @@ -10,7 +10,7 @@ jobs: name: check goimports runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -21,11 +21,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod - - uses: golangci/golangci-lint-action@v9.0.0 + - uses: golangci/golangci-lint-action@v9.1.0 with: version: v2.1.6 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ce177f884..6787e9d89 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ jobs: name: Unit Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod