diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3e73859ed6..6404e649e8 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -49,10 +49,10 @@ jobs: CXX: "/usr/bin/clang++-14" steps: - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 + - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 - run: cargo tarpaulin --locked --workspace --exclude=linkerd2-proxy --exclude=linkerd-transport-header --exclude=opencensus-proto --exclude=spire-proto --no-run - run: cargo tarpaulin --locked --workspace --exclude=linkerd2-proxy --exclude=linkerd-transport-header --exclude=opencensus-proto --exclude=spire-proto --skip-clean --ignore-tests --no-fail-fast --out=Xml # Some tests are especially flakey in coverage tests. That's fine. We # only really care to measure how much of our codebase is covered. continue-on-error: true - - uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be + - uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index 0e8759000c..e01432032b 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -15,6 +15,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - - uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 + - uses: DavidAnson/markdownlint-cli2-action@eb5ca3ab411449c66620fe7f1b3c9e10547144b0 with: globs: "**/*.md" diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index ab2594bb7b..a43fc0d955 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -92,7 +92,7 @@ jobs: steps: - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 + - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 - run: just fetch - name: Run cargo deny check bans licenses sources uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 @@ -118,7 +118,7 @@ jobs: steps: - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 + - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 - run: just fetch - run: just check-crate ${{ matrix.crate }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d0d8b3105..be6c827dde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -143,14 +143,14 @@ jobs: - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b with: ref: ${{ needs.meta.outputs.ref }} - - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 + - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 with: key: ${{ matrix.arch }} - run: just fetch - run: just arch=${{ matrix.arch }} libc=${{ matrix.libc }} rustup - run: just arch=${{ matrix.arch }} libc=${{ matrix.libc }} profile=${{ needs.meta.outputs.profile }} build - run: just arch=${{ matrix.arch }} libc=${{ matrix.libc }} profile=${{ needs.meta.outputs.profile }} package - - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 + - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: ${{ matrix.arch }}-artifacts path: target/package/* @@ -180,7 +180,7 @@ jobs: ref: ${{ needs.meta.outputs.ref }} - run: git tag -a -m "$VERSION" "$TAG" # Fetch the artifacts. - - uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e + - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 with: path: artifacts - run: du -h artifacts/**/* @@ -188,7 +188,7 @@ jobs: - if: needs.meta.outputs.publish == 'true' run: git push origin "$TAG" - if: needs.meta.outputs.publish == 'true' - uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87 + uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 with: name: ${{ env.VERSION }} tag_name: ${{ env.TAG }}