diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec82c0de5..7584a6f09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,8 @@ jobs: CXX: ${{ matrix.cxx }} LD: ${{ matrix.cc }} steps: - - uses: actions/checkout@v3 + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" + uses: actions/checkout@v3 - name: Ruby version run: ruby -v - name: Compiler version @@ -41,7 +42,8 @@ jobs: env: MRUBY_CONFIG: ci/msvc steps: - - uses: actions/checkout@v3 + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" + uses: actions/checkout@v3 - name: Ruby version run: ruby -v - name: Build and test diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 10117d547..bc913fe03 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -19,7 +19,7 @@ jobs: security-events: write # for github/codeql-action/autobuild to send a status report runs-on: ubuntu-latest steps: - - name: Checkout repository + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" uses: actions/checkout@v3 with: # We must fetch at least the immediate parents so that if this is diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c31b74119..599a82ac9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: name: Check spelling with misspell runs-on: ubuntu-latest steps: - - name: Check Out + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" uses: actions/checkout@v3 - name: Install run: wget -O - -q https://git.io/misspell | sh -s -- -b . @@ -20,7 +20,7 @@ jobs: name: Run pre-commit runs-on: ubuntu-latest steps: - - name: Check Out + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" uses: actions/checkout@v3 - name: Install run: | diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 538ccf072..51f3d5f16 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -13,7 +13,7 @@ jobs: name: Lint Code Base runs-on: ubuntu-latest steps: - - name: Checkout Code + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" uses: actions/checkout@v3 with: # Full git history is needed to get a proper list of changed files within `super-linter`