diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 215f77c..42236a5 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -24,7 +24,7 @@ jobs: changed: ${{ steps.check.outputs.changed }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 # Before the tag is removed, since the tag is what says which commit was # last released. @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Remove existing nightly tag run: | @@ -105,7 +105,7 @@ jobs: ${{ matrix.build.VULKAN_DRIVERS }} - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Get version info id: version diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index c59d031..0d9d2f5 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -13,7 +13,7 @@ jobs: contents: write steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Install build dependencies @@ -44,7 +44,7 @@ jobs: cancel-in-progress: false steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.RELEASE_PLZ_TOKEN }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0b77fac..00dd181 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -58,7 +58,7 @@ jobs: ${{ matrix.build.VULKAN_DRIVERS }} - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Build run: cargo build --release --locked --jobs "$(($(nproc)+1))"