diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 4564c45..4d7d495 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run dprint run: | diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 83d5008..12471e4 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -18,7 +18,7 @@ jobs: if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Extract version from branch name id: extract-version diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 79b55e7..55a222f 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -28,7 +28,7 @@ jobs: name: "Draft a new release" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create release branch run: git checkout -b release/${{ inputs.version }} diff --git a/.github/workflows/release-to-crates-io.yml b/.github/workflows/release-to-crates-io.yml index a30d30c..6a5a9e9 100644 --- a/.github/workflows/release-to-crates-io.yml +++ b/.github/workflows/release-to-crates-io.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout tagged commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.release.target_commitish }}