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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:
# Checkout the repository code with full git history.
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Fetch all commits and branches for complete history.
fetch-depth: 0
Expand All @@ -61,7 +61,7 @@ jobs:
steps:
# Checkout the repository code.
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
# Install the Go version specified in the matrix.
- name: Install Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
steps:
# Checkout the repository code.
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
# Install Go for the build test.
- name: Install Go
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
# Check out repository with full Git history for version analysis.
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down