diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 2075016..584ca8b 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5595f3c..538b6c9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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