diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 28730149b0f98..f9818b90f1afe 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -15,12 +15,12 @@ jobs: timeout-minutes: 10 steps: - uses: linkerd/dev/actions/setup-tools@v41 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just-dev lint-actions devcontainer-versions: runs-on: ubuntu-latest steps: - uses: linkerd/dev/actions/setup-tools@v41 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just-dev check-action-images diff --git a/.github/workflows/choco.yml b/.github/workflows/choco.yml index f6808de827775..8742632d556b2 100644 --- a/.github/workflows/choco.yml +++ b/.github/workflows/choco.yml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 10 runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: devblackops/github-action-psscriptanalyzer@854038567344559afaaa8ccb7a014452b99d86ee env: # https://github.com/devblackops/github-action-psscriptanalyzer/pull/3/files diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 099baae92a157..40dda2101066f 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -16,7 +16,7 @@ jobs: container: image: golang:1.19 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: go install gotest.tools/gotestsum@v0.4.2 - run: gotestsum -- -cover -coverprofile=coverage.out -v -mod=readonly ./... - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d @@ -31,7 +31,7 @@ jobs: container: image: node:20-stretch steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Yarn setup shell: bash run: bin/scurl -o- https://yarnpkg.com/install.sh | bash -s -- --version 1.21.1 --network-concurrency 1 @@ -54,7 +54,7 @@ jobs: image: docker://rust:1.69.0 options: --security-opt seccomp=unconfined steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - shell: bash run: mkdir -p target && cd target && bin/scurl -v https://github.com/xd009642/tarpaulin/releases/download/0.18.0/cargo-tarpaulin-0.18.0-travis.tar.gz | tar zxvf - && chmod 755 cargo-tarpaulin - run: target/cargo-tarpaulin tarpaulin --workspace --out Xml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d895d9aed2672..7c297bd3b2a07 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Initialize # Unpinned action version so that we automatically get analyzer updates. diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index b2ef654141617..54fa9cb3557b0 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/linkerd/dev:v40-rust steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: | dev=$(cargo version | cut -d' ' -f2) tc=$(cat rust-toolchain) @@ -30,5 +30,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: linkerd/dev/actions/setup-tools@v41 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just-dev pull-dev-image diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 95e94a0cffaee..7cd137104a022 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-20.04 container: ghcr.io/linkerd/dev:v40-go steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just go-lint --verbose --timeout=10m @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-20.04 container: ghcr.io/linkerd/dev:v40-go steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just go-fmt go-test: @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-20.04 container: ghcr.io/linkerd/dev:v40-go steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just go-fetch - run: just go-test diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index 1368af7b3b5de..3091f6dcba764 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -17,6 +17,6 @@ jobs: timeout-minutes: 5 steps: - uses: linkerd/dev/actions/setup-tools@v41 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: helm-docs - run: git diff --exit-code -- **/charts/**/README.md diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 211618f2b718b..175e7bd145a67 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -45,7 +45,7 @@ jobs: needs: [cleanup] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: echo "tag=$(CI_FORCE_CLEAN=1 bin/root-tag)" >> "$GITHUB_OUTPUT" id: tag outputs: @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 15 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: ./.github/actions/docker-build id: build with: @@ -94,7 +94,7 @@ jobs: - proxy timeout-minutes: 20 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: ./.github/actions/docker-build id: build with: @@ -125,7 +125,7 @@ jobs: - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: image-archives @@ -146,7 +146,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: tj-actions/changed-files@246636f5fa148b5ad8e65ca4c57b18af3123e5f6 id: changed with: @@ -177,7 +177,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: olix0r/cargo-action-fmt/setup@9269f3aa1ff01775d95efc97037e2cbdb41d9684 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: image-archives @@ -228,7 +228,7 @@ jobs: - web timeout-minutes: 15 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: ./.github/actions/docker-build id: build with: @@ -266,7 +266,7 @@ jobs: - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: image-archives @@ -286,7 +286,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: tj-actions/changed-files@246636f5fa148b5ad8e65ca4c57b18af3123e5f6 id: changed with: @@ -309,7 +309,7 @@ jobs: - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: image-archives @@ -330,7 +330,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: tj-actions/changed-files@246636f5fa148b5ad8e65ca4c57b18af3123e5f6 id: changed with: @@ -360,7 +360,7 @@ jobs: - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: image-archives diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 071714dcc0004..c8f0741e1bc84 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -19,7 +19,7 @@ jobs: env: NODE_ENV: test steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Yarn setup shell: bash run: | diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index f376384f12e9d..3f599998a0caf 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -14,7 +14,7 @@ jobs: timeout-minutes: 5 runs-on: ubuntu-latest steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: DavidAnson/markdownlint-cli2-action@3aaa38e446fbd2c288af4291aa0f55d64651050f with: globs: | diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index 0faba39a132df..99c20efeb58e6 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -18,7 +18,7 @@ jobs: container: ghcr.io/linkerd/dev:v40-go steps: - run: apt update && apt install -y unzip - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: bin/protoc-diff diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4087aa2ac7469..e3affe91b65e0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: tag: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: echo "tag=$(CI_FORCE_CLEAN=1 bin/root-tag)" >> "$GITHUB_OUTPUT" id: tag outputs: @@ -49,7 +49,7 @@ jobs: # policy-controller docker builds have occasionally hit a 30-minute timeout. timeout-minutes: 45 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Set tag run: echo 'TAG=${{ needs.tag.outputs.tag }}' >> "$GITHUB_ENV" - uses: ./.github/actions/docker-build @@ -94,7 +94,7 @@ jobs: needs: [docker_build] steps: - name: Checkout code - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' @@ -127,7 +127,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout code - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' @@ -151,7 +151,7 @@ jobs: runs-on: [self-hosted, Linux, ARM64] timeout-minutes: 30 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: go-version: '1.19' @@ -199,7 +199,7 @@ jobs: steps: - name: Checkout code if: startsWith(github.ref, 'refs/tags/stable') - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Chocolatey - update nuspec if: startsWith(github.ref, 'refs/tags/stable') run: | @@ -229,7 +229,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Set environment variables run: | echo 'TAG=${{ needs.tag.outputs.tag }}' >> "$GITHUB_ENV" @@ -284,7 +284,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/stable') || startsWith(github.ref, 'refs/tags/edge') runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Set install target for stable if: startsWith(github.ref, 'refs/tags/stable') run: echo "INSTALL=install" >> "$GITHUB_ENV" @@ -312,7 +312,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout code - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - name: Log into GCP uses: 'google-github-actions/auth@35b0e87d162680511bf346c299f71c9c5c379033' with: diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6c2b7d889b9e5..2fc93dfd48373 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -34,7 +34,7 @@ jobs: # Prevent sudden announcement of a new advisory from failing Ci. continue-on-error: ${{ matrix.checks == 'advisories' }} steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - uses: EmbarkStudios/cargo-deny-action@a50c7d5f86370e02fae8472c398f15a36e517bb8 with: command: check ${{ matrix.checks }} @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/linkerd/dev:v40-rust steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just rs-check-fmt @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/linkerd/dev:v40-rust steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just rs-fetch - run: just rs-clippy @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/linkerd/dev:v40-rust steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just rs-fetch - run: just rs-check-dirs @@ -74,7 +74,7 @@ jobs: timeout-minutes: 15 container: ghcr.io/linkerd/dev:v40-rust steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just rs-fetch - run: just rs-test-build - run: just rs-test @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 2 steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: | ex=0 diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml index 5cf6536253e28..3873362e703f0 100644 --- a/.github/workflows/shell.yml +++ b/.github/workflows/shell.yml @@ -17,6 +17,6 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: linkerd/dev/actions/setup-tools@v41 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac - run: just sh-lint