diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml index f67e6a94..36cc802b 100644 --- a/.github/workflows/backport.yaml +++ b/.github/workflows/backport.yaml @@ -7,6 +7,6 @@ jobs: permissions: contents: write # for reading and creating branches. pull-requests: write # for creating pull requests against release branches. - uses: fluxcd/gha-workflows/.github/workflows/backport.yaml@v0.4.0 + uses: fluxcd/gha-workflows/.github/workflows/backport.yaml@v0.5.0 secrets: github-token: ${{ secrets.BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1bd22fbf..5afc2828 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,7 +12,7 @@ jobs: contents: read # for reading the repository code. steps: - name: Test suite setup - uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.4.0 + uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.5.0 with: go-version: 1.25.x - name: Run tests diff --git a/.github/workflows/cifuzz.yaml b/.github/workflows/cifuzz.yaml index 193bfc63..ba52480e 100644 --- a/.github/workflows/cifuzz.yaml +++ b/.github/workflows/cifuzz.yaml @@ -10,7 +10,7 @@ jobs: contents: read # for reading the repository code. steps: - name: Test suite setup - uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.4.0 + uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.5.0 with: go-version: 1.25.x - name: Smoke test Fuzzers diff --git a/.github/workflows/integration-aws.yaml b/.github/workflows/integration-aws.yaml index ba4f8e06..3bf81866 100644 --- a/.github/workflows/integration-aws.yaml +++ b/.github/workflows/integration-aws.yaml @@ -12,13 +12,13 @@ jobs: working-directory: ./tests/integration steps: - name: Test suite setup - uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.4.0 + uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.5.0 with: go-version: 1.25.x - name: Setup Terraform uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0 + uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1 with: role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/${{ secrets.IRC_E2E_AWS_ASSUME_ROLE_NAME }} role-session-name: IRC_GH_Actions diff --git a/.github/workflows/integration-azure.yaml b/.github/workflows/integration-azure.yaml index cbf7a11b..c99a1716 100644 --- a/.github/workflows/integration-azure.yaml +++ b/.github/workflows/integration-azure.yaml @@ -12,7 +12,7 @@ jobs: working-directory: ./tests/integration steps: - name: Test suite setup - uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.4.0 + uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.5.0 with: go-version: 1.25.x - name: Setup Terraform diff --git a/.github/workflows/integration-gcp.yaml b/.github/workflows/integration-gcp.yaml index 008b3b5d..ea1cd664 100644 --- a/.github/workflows/integration-gcp.yaml +++ b/.github/workflows/integration-gcp.yaml @@ -12,7 +12,7 @@ jobs: working-directory: ./tests/integration steps: - name: Test suite setup - uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.4.0 + uses: fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.5.0 with: go-version: 1.25.x - name: Setup Terraform @@ -26,13 +26,13 @@ jobs: - name: Set up gcloud uses: google-github-actions/setup-gcloud@aa5489c8933f4cc7a4f7d45035b3b1440c9c10db # v3.0.1 - name: Log into gcr.io - uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0 + uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 with: registry: gcr.io username: oauth2accesstoken password: ${{ steps.auth.outputs.access_token }} - name: Log into us-central1-docker.pkg.dev - uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0 + uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 with: registry: us-central1-docker.pkg.dev username: oauth2accesstoken diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9cc8d6e1..8b8372ef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ jobs: contents: write # for creating the GitHub release. id-token: write # for creating OIDC tokens for signing. packages: write # for pushing and signing container images. - uses: fluxcd/gha-workflows/.github/workflows/controller-release.yaml@v0.4.0 + uses: fluxcd/gha-workflows/.github/workflows/controller-release.yaml@v0.5.0 with: controller: ${{ github.event.repository.name }} release-candidate-prefix: ${{ github.event.inputs.tag }} diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml index ea8e992d..371f9f0c 100644 --- a/.github/workflows/scan.yml +++ b/.github/workflows/scan.yml @@ -11,7 +11,7 @@ jobs: permissions: contents: read # for reading the repository code. security-events: write # for uploading the CodeQL analysis results. - uses: fluxcd/gha-workflows/.github/workflows/code-scan.yaml@v0.4.0 + uses: fluxcd/gha-workflows/.github/workflows/code-scan.yaml@v0.5.0 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} fossa-token: ${{ secrets.FOSSA_TOKEN }} diff --git a/.github/workflows/sync-labels.yaml b/.github/workflows/sync-labels.yaml index a4635094..e4464c7d 100644 --- a/.github/workflows/sync-labels.yaml +++ b/.github/workflows/sync-labels.yaml @@ -11,6 +11,6 @@ jobs: permissions: contents: read # for reading the labels file. issues: write # for creating and updating labels. - uses: fluxcd/gha-workflows/.github/workflows/labels-sync.yaml@v0.4.0 + uses: fluxcd/gha-workflows/.github/workflows/labels-sync.yaml@v0.5.0 secrets: github-token: ${{ secrets.GITHUB_TOKEN }}