diff --git a/.github/workflows/bump-minor.yml b/.github/workflows/bump-minor.yml index 46bc14fc..82226925 100644 --- a/.github/workflows/bump-minor.yml +++ b/.github/workflows/bump-minor.yml @@ -6,7 +6,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ssh-key: "${{ secrets.PUSH_TAG_PRIVATE_KEY }}" diff --git a/.github/workflows/bump-patch.yml b/.github/workflows/bump-patch.yml index c6f035aa..b9666e2b 100644 --- a/.github/workflows/bump-patch.yml +++ b/.github/workflows/bump-patch.yml @@ -6,7 +6,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ssh-key: "${{ secrets.PUSH_TAG_PRIVATE_KEY }}" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8e27b108..cd332e28 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a900bfb..3ec30c5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: if: github.repository == 'go-rel/rel' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Set up Go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 22f48907..eedb5914 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: with: go-version: ${{ matrix.go }} - name: Check out code into the Go module directory - uses: actions/checkout@v4 + uses: actions/checkout@v5 - run: go test -race ./... coverage: @@ -35,7 +35,7 @@ jobs: with: go-version: 1.21 - name: Check out code into the Go module directory - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 2 - run: go test -race -tags=all -coverprofile=coverage.txt -covermode=atomic ./...