diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1eacebc..939f17c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -30,7 +30,7 @@ jobs: os: [ubuntu-latest, windows-latest] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v4 diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 122b047..7cf6081 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -28,7 +28,7 @@ jobs: go-version: '1.25' check-latest: true - name: Check out source code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: go mod tidy - name: Run read table example diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 45de8de..f44a425 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -45,7 +45,7 @@ jobs: with: go-version: 1.25 - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: go mod tidy - name: Run golangci-lint diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8fee3ba..81e9502 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,7 +29,7 @@ jobs: go-version: ${{ matrix.go-version }} check-latest: true - name: Check out source code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: go mod tidy - name: Run tests