From 4b164c520d1239feaa9fa221c37e8ec83ed42cf9 Mon Sep 17 00:00:00 2001 From: Ocheretovich Date: Wed, 4 Mar 2026 13:23:05 +0200 Subject: [PATCH] chore: update actions/checkout to v6 --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f9ce3e..d1b1366 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -77,7 +77,7 @@ jobs: needs: [prepare-release] if: always() && (needs.prepare-release.result == 'success' || needs.prepare-release.result == 'skipped') steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }} - name: Install Rust @@ -96,7 +96,7 @@ jobs: matrix: go-version: ['1.25', 'stable'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }} - name: Install Rust @@ -119,7 +119,7 @@ jobs: needs: rust-test if: always() && needs.rust-test.result == 'success' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }} - name: Install Node @@ -168,7 +168,7 @@ jobs: target: universal2-apple-darwin runs-on: ${{ matrix.platform.runner }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }} - name: Install python @@ -198,7 +198,7 @@ jobs: needs: rust-test if: always() && needs.rust-test.result == 'success' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }} - name: Install python @@ -223,7 +223,7 @@ jobs: needs: python-sdist if: always() && needs.python-sdist.result == 'success' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }} - name: Install Rust @@ -249,7 +249,7 @@ jobs: contents: write id-token: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 # need tags to generate release notes ref: ${{ inputs.version }}