From cdca1d45013eb538be8b86fa5a823c3106cab6ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 06:39:34 +0000 Subject: [PATCH] chore(deps): Bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/setup-go](https://github.com/actions/setup-go) | `6` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml](https://github.com/google/osv-scanner-action) | `2.3.8` | `2.5.0` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.47.2` | `1.49.0` | 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 `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) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml` from 2.3.8 to 2.5.0 - [Release notes](https://github.com/google/osv-scanner-action/releases) - [Commits](https://github.com/google/osv-scanner-action/compare/v2.3.8...v2.5.0) Updates `crate-ci/typos` from 1.47.2 to 1.49.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.47.2...v1.49.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: crate-ci/typos dependency-version: 1.49.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/codeql.yml | 4 ++-- .github/workflows/coverage.yml | 10 +++++----- .github/workflows/golangci-lint.yml | 8 ++++---- .github/workflows/govulncheck.yml | 4 ++-- .github/workflows/lychee.yml | 2 +- .github/workflows/osv-scanner.yml | 2 +- .github/workflows/typos.yml | 4 ++-- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b09e2fe..cd5f07d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,11 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # need tags for the version-tag check below - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version: '1.25' @@ -50,9 +50,9 @@ jobs: integration: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version: '1.25' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 20bc343..ed3206a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,8 +19,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v6 - - uses: actions/setup-go@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version-file: go.mod - uses: github/codeql-action/init@v4 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 2dd6e36..7cd53b5 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,22 +14,22 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: sdk-go # Full history so diff-cover can resolve origin/. fetch-depth: 0 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: InstaNode-dev/common path: common continue-on-error: true - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: InstaNode-dev/proto path: proto continue-on-error: true - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: sdk-go/go.mod - name: Generate coverage @@ -47,7 +47,7 @@ jobs: # covered by a test (100%), and the project floor stays >=95%. # Tool: diff-cover (https://github.com/Bachmann1234/diff-cover). # ------------------------------------------------------------------ - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 if: github.event_name == 'pull_request' with: python-version: '3.12' diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 6c3a44c..cdbbf29 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -18,23 +18,23 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: sdk-go # Sibling checkouts (proto/common) for repos with replace directives. # No-op for repos that do not need them. - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 if: ${{ hashFiles('sdk-go/go.mod') != '' }} with: repository: InstaNode-dev/common path: common continue-on-error: true - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: InstaNode-dev/proto path: proto continue-on-error: true - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: sdk-go/go.mod - uses: golangci/golangci-lint-action@v9 diff --git a/.github/workflows/govulncheck.yml b/.github/workflows/govulncheck.yml index bfafe12..a77bfef 100644 --- a/.github/workflows/govulncheck.yml +++ b/.github/workflows/govulncheck.yml @@ -16,8 +16,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v6 - - uses: actions/setup-go@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version-file: go.mod check-latest: true diff --git a/.github/workflows/lychee.yml b/.github/workflows/lychee.yml index 2c07a4d..a9180db 100644 --- a/.github/workflows/lychee.yml +++ b/.github/workflows/lychee.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: lycheeverse/lychee-action@v2 with: args: --no-progress --max-concurrency 4 --exclude-mail './**/*.md' './**/*.html' diff --git a/.github/workflows/osv-scanner.yml b/.github/workflows/osv-scanner.yml index ecb52e6..2265f4d 100644 --- a/.github/workflows/osv-scanner.yml +++ b/.github/workflows/osv-scanner.yml @@ -15,7 +15,7 @@ permissions: jobs: scan: - uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.3.8 + uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.5.0 permissions: actions: read contents: read diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 3e34d0e..faea571 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -14,5 +14,5 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 3 steps: - - uses: actions/checkout@v6 - - uses: crate-ci/typos@v1.47.2 + - uses: actions/checkout@v7 + - uses: crate-ci/typos@v1.49.0