From 582ec5aa3baf87238ab66554bff23da40d66276f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 11:42:37 +0000 Subject: [PATCH] ci: bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [crate-ci/typos](https://github.com/crate-ci/typos) and [actions/setup-go](https://github.com/actions/setup-go). Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `crate-ci/typos` from 1.46.3 to 1.48.0 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.46.3...v1.48.0) Updates `actions/setup-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: crate-ci/typos dependency-version: 1.48.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/integration-test.yml | 2 +- .github/workflows/oss-security-scan.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 7f9e87d..b9bdfce 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -23,7 +23,7 @@ jobs: name: full-stack-starter integration runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: python-version: '3.12' diff --git a/.github/workflows/oss-security-scan.yml b/.github/workflows/oss-security-scan.yml index e4dd963..8fd670f 100644 --- a/.github/workflows/oss-security-scan.yml +++ b/.github/workflows/oss-security-scan.yml @@ -65,12 +65,12 @@ jobs: # credential-discovery path. Forcing github.token + skipping # persistence routes around the discovery path that flaked, and # typos itself needs no later git auth (it reads the working tree). - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ github.token }} persist-credentials: false - name: Run typos - uses: crate-ci/typos@v1.46.3 + uses: crate-ci/typos@v1.48.0 gitleaks: if: ${{ inputs.run-gitleaks }} @@ -79,7 +79,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ github.token }} fetch-depth: 0 @@ -108,7 +108,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ github.token }} fetch-depth: 0 @@ -139,7 +139,7 @@ jobs: security-events: write contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ github.token }} persist-credentials: false @@ -158,13 +158,13 @@ jobs: fi - name: Set up Go from go.mod (Go callers) if: steps.gomod.outputs.present == 'true' - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version-file: 'go.mod' check-latest: true - name: Set up Go (stable; non-Go callers) if: steps.gomod.outputs.present == 'false' - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: 'stable' - name: Install osv-scanner CLI