diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d5e029..e85b107 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Pull repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check if: ${{ success() }} run: cargo check --all-targets --all-features @@ -23,7 +23,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Pull repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Compile data if: ${{ success() }} run: cargo run --bin=data_compiler data @@ -68,7 +68,7 @@ jobs: EXTENSION: .exe steps: - name: Pull repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install rustup run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile default --target ${{ matrix.TARGET }} -y