diff options
| author | Richard Brooksby | 2024-11-26 16:09:47 +0000 |
|---|---|---|
| committer | Richard Brooksby | 2024-11-26 16:19:41 +0000 |
| commit | d4abb2413f1db684925578bba708ae1d4a0c5aa8 (patch) | |
| tree | 048fdae9f3570e3363ee02b829112a1b12ceb057 | |
| parent | fe20657e4ee8a97c5bd81da3d713caa34c00b457 (diff) | |
| download | emacs-d4abb2413f1db684925578bba708ae1d4a0c5aa8.tar.gz emacs-d4abb2413f1db684925578bba708ae1d4a0c5aa8.zip | |
Adding documentation reference to use of checkout action to help clarify why we say "@v4", in response to review comment <https://github.com/ravenbrook/mps/pull/284#pullrequestreview-2461989972>.
| -rw-r--r-- | mps/.github/workflows/build-and-test.yml | 4 | ||||
| -rw-r--r-- | mps/.github/workflows/fixme-check.yml | 2 | ||||
| -rw-r--r-- | mps/.github/workflows/rst-check.yml | 2 | ||||
| -rw-r--r-- | mps/.github/workflows/shell-script-check.yml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/mps/.github/workflows/build-and-test.yml b/mps/.github/workflows/build-and-test.yml index 28fdb0189c8..64d445586a2 100644 --- a/mps/.github/workflows/build-and-test.yml +++ b/mps/.github/workflows/build-and-test.yml | |||
| @@ -44,7 +44,7 @@ jobs: | |||
| 44 | 44 | ||
| 45 | # See design.mps.tests.ci.run.posix. | 45 | # See design.mps.tests.ci.run.posix. |
| 46 | steps: | 46 | steps: |
| 47 | - uses: actions/checkout@v4 | 47 | - uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage> |
| 48 | - run: CC=${{ matrix.compiler }} ./configure | 48 | - run: CC=${{ matrix.compiler }} ./configure |
| 49 | - run: make | 49 | - run: make |
| 50 | - run: make test | 50 | - run: make test |
| @@ -59,7 +59,7 @@ jobs: | |||
| 59 | # <https://github.com/actions/runner-images/blob/e6fcf60b8e6c0f80a065327eaefe836881c28b68/images/win/Windows2022-Readme.md?plain=1#L215>. | 59 | # <https://github.com/actions/runner-images/blob/e6fcf60b8e6c0f80a065327eaefe836881c28b68/images/win/Windows2022-Readme.md?plain=1#L215>. |
| 60 | 60 | ||
| 61 | steps: | 61 | steps: |
| 62 | - uses: actions/checkout@v4 | 62 | - uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage> |
| 63 | - run: | | 63 | - run: | |
| 64 | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 | 64 | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 |
| 65 | cd code | 65 | cd code |
diff --git a/mps/.github/workflows/fixme-check.yml b/mps/.github/workflows/fixme-check.yml index 40cb9a57258..e42f7fa3bcc 100644 --- a/mps/.github/workflows/fixme-check.yml +++ b/mps/.github/workflows/fixme-check.yml | |||
| @@ -17,5 +17,5 @@ jobs: | |||
| 17 | check-fixme: | 17 | check-fixme: |
| 18 | runs-on: ubuntu-latest | 18 | runs-on: ubuntu-latest |
| 19 | steps: | 19 | steps: |
| 20 | - uses: actions/checkout@v4 | 20 | - uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage> |
| 21 | - run: tool/check-fixme | 21 | - run: tool/check-fixme |
diff --git a/mps/.github/workflows/rst-check.yml b/mps/.github/workflows/rst-check.yml index 46ea28a53de..1f643c57427 100644 --- a/mps/.github/workflows/rst-check.yml +++ b/mps/.github/workflows/rst-check.yml | |||
| @@ -16,7 +16,7 @@ jobs: | |||
| 16 | check-rst: | 16 | check-rst: |
| 17 | runs-on: ubuntu-latest | 17 | runs-on: ubuntu-latest |
| 18 | steps: | 18 | steps: |
| 19 | - uses: actions/checkout@v4 | 19 | - uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage> |
| 20 | - name: Install docutils | 20 | - name: Install docutils |
| 21 | run: sudo apt-get install -y docutils | 21 | run: sudo apt-get install -y docutils |
| 22 | - name: Check reStructuredText syntax | 22 | - name: Check reStructuredText syntax |
diff --git a/mps/.github/workflows/shell-script-check.yml b/mps/.github/workflows/shell-script-check.yml index ad0a23fdea3..e8e9e2ae513 100644 --- a/mps/.github/workflows/shell-script-check.yml +++ b/mps/.github/workflows/shell-script-check.yml | |||
| @@ -16,7 +16,7 @@ jobs: | |||
| 16 | check-shell-scripts: | 16 | check-shell-scripts: |
| 17 | runs-on: ubuntu-latest | 17 | runs-on: ubuntu-latest |
| 18 | steps: | 18 | steps: |
| 19 | - uses: actions/checkout@v4 | 19 | - uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage> |
| 20 | - name: Install shellcheck | 20 | - name: Install shellcheck |
| 21 | run: sudo apt-get install -y shellcheck | 21 | run: sudo apt-get install -y shellcheck |
| 22 | - name: Check shell scripts | 22 | - name: Check shell scripts |