From b9fcd6b83cc01a423d27ea8d1344d4482087336d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 13:18:36 +0000 Subject: [PATCH] chore(deps): bump the gha group across 1 directory with 6 updates Bumps the gha group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [azure/setup-helm](https://github.com/azure/setup-helm) | `4.3.0` | `4.3.1` | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2` | `3` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | Updates `actions/checkout` from 4 to 5 - [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/v4...v5) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `azure/setup-helm` from 4.3.0 to 4.3.1 - [Release notes](https://github.com/azure/setup-helm/releases) - [Changelog](https://github.com/Azure/setup-helm/blob/main/CHANGELOG.md) - [Commits](https://github.com/azure/setup-helm/compare/b9e51907a09c216f16ebe8536097933489208112...1a275c3b69536ee54be43f2070a358922e12c8d4) Updates `google-github-actions/auth` from 2 to 3 - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/auth/compare/v2...v3) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: azure/setup-helm dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha - dependency-name: google-github-actions/auth dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha ... Signed-off-by: dependabot[bot] --- .github/workflows/check-dist.yml | 6 +++--- .github/workflows/master.yaml | 10 +++++----- .github/workflows/test-job.yaml | 2 +- .github/workflows/test-naisjob-without-schedule.yaml | 2 +- .github/workflows/test-naisjob.yaml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index acc938d2..1428e203 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -24,8 +24,8 @@ jobs: working-directory: actions/spa-setup-task steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: '20' - run: yarn install @@ -41,7 +41,7 @@ jobs: id: diff # If index.js was different than expected, upload the expected version as an artifact - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ failure() && steps.diff.conclusion == 'failure' }} with: name: dist diff --git a/.github/workflows/master.yaml b/.github/workflows/master.yaml index cbf829ce..b36ad498 100644 --- a/.github/workflows/master.yaml +++ b/.github/workflows/master.yaml @@ -36,8 +36,8 @@ jobs: - component: canary-deployer chart: true steps: - - uses: actions/checkout@v4 # ratchet:exclude - - uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # ratchet:azure/setup-helm@v3 + - uses: actions/checkout@v6 # ratchet:exclude + - uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # ratchet:azure/setup-helm@v3 if: matrix.chart with: version: "v3.11.1" @@ -78,7 +78,7 @@ jobs: - name: "Authenticate to Google Cloud" if: matrix.chart && github.ref == 'refs/heads/master' id: "auth" - uses: "google-github-actions/auth@v2" # ratchet:exclude + uses: "google-github-actions/auth@v3" # ratchet:exclude with: workload_identity_provider: ${{ secrets.NAIS_IO_WORKLOAD_IDENTITY_PROVIDER }} service_account: "gh-deploy@nais-io.iam.gserviceaccount.com" @@ -136,9 +136,9 @@ jobs: - build_and_push runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 # ratchet:exclude + - uses: actions/checkout@v6 # ratchet:exclude - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: 'stable' diff --git a/.github/workflows/test-job.yaml b/.github/workflows/test-job.yaml index 0335f148..544ce3e9 100644 --- a/.github/workflows/test-job.yaml +++ b/.github/workflows/test-job.yaml @@ -13,7 +13,7 @@ jobs: name: Deploy to NAIS runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: deploy to ${{ github.event.inputs.cluster }} uses: nais/deploy/actions/deploy@v2 env: diff --git a/.github/workflows/test-naisjob-without-schedule.yaml b/.github/workflows/test-naisjob-without-schedule.yaml index d119d5d9..1b71a000 100644 --- a/.github/workflows/test-naisjob-without-schedule.yaml +++ b/.github/workflows/test-naisjob-without-schedule.yaml @@ -15,7 +15,7 @@ jobs: contents: read runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: deploy to ${{ github.event.inputs.cluster }} uses: nais/deploy/actions/deploy@v2 env: diff --git a/.github/workflows/test-naisjob.yaml b/.github/workflows/test-naisjob.yaml index 23a32631..0d50cb70 100644 --- a/.github/workflows/test-naisjob.yaml +++ b/.github/workflows/test-naisjob.yaml @@ -13,7 +13,7 @@ jobs: name: Deploy to NAIS runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: deploy to ${{ github.event.inputs.cluster }} uses: nais/deploy/actions/deploy@v2 env: