Update actions/checkout action to v5

This commit is contained in:
renovate[bot]
2025-09-26 11:00:18 +00:00
committed by GitHub
parent 79063d05db
commit 29e7151ceb
2 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL

View File

@@ -6,7 +6,7 @@ jobs:
test-nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
# Nix Flakes doesn't work on shallow clones
fetch-depth: 0
@@ -26,7 +26,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Format
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
if: matrix.os == 'ubuntu-latest'