Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/action-validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
submodules: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agents-validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
submodules: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4.37.1
uses: github/codeql-action/init@v4.37.2
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand Down Expand Up @@ -88,6 +88,6 @@ jobs:
exit 1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4.37.1
uses: github/codeql-action/analyze@v4.37.2
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-autobump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
# Checkout the PR branch (head ref) not the target branch
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1

- name: Install yq
uses: mikefarah/yq@v4.53.3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-coverage-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1

- name: Setup Go
uses: actions/setup-go@v7.0.0
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
pull-requests: write # write permission needed to comment on PR
steps:
- name: code-coverage-report
uses: fgrosse/go-coverage-report@v1.3.0 # Consider using a Git revision for maximum security
uses: fgrosse/go-coverage-report@v1.3.1 # Consider using a Git revision for maximum security
with:
coverage-artifact-name: "code-coverage" # can be omitted if you used this default value
coverage-file-name: "coverage.txt" # can be omitted if you used this default value
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
generated_at: ${{ steps.meta.outputs.generated_at }}
steps:
- name: Checkout target
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
ref: ${{ github.event_name == 'workflow_dispatch' && (inputs.target_commitish != '' && inputs.target_commitish || github.sha) || github.sha }}
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
actions: read
steps:
- name: Checkout candidate commit
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
ref: ${{ needs.preflight.outputs.target_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1

- name: Install shellcheck, shfmt, and zsh
run: |
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1

- name: Run actionlint
uses: rhysd/actionlint@v1.7.12
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),


---
## [0.1.48] - 2026-07-28
### Changed
- github actions update(deps): bump the version-updates group across 1 directory with 3 updates

## [0.1.47] - 2026-07-23
### Changed
- github actions update(deps): bump the version-updates group
Expand Down
2 changes: 1 addition & 1 deletion bsctl/static/resources/constants.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# BasicSetupCliVersion - constant for semantic versioning
BasicSetupCliVersion: "0.1.47"
BasicSetupCliVersion: "0.1.48"
2 changes: 1 addition & 1 deletion resources/version.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# BasicSetupCliVersion - primary version source for releases and docs bump automation
BasicSetupCliVersion: "0.1.47"
BasicSetupCliVersion: "0.1.48"
Loading