Skip to content

Commit

Permalink
Adding documentation reference to use of checkout action to help clar…
Browse files Browse the repository at this point in the history
…ify why we say "@v4", in response to review comment <#284 (review)>.
  • Loading branch information
rptb1 committed Nov 26, 2024
1 parent 41c5490 commit 8d2019b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

# See design.mps.tests.ci.run.posix.
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage>
- run: CC=${{ matrix.compiler }} ./configure
- run: make
- run: make test
Expand All @@ -59,7 +59,7 @@ jobs:
# <https://github.com/actions/runner-images/blob/e6fcf60b8e6c0f80a065327eaefe836881c28b68/images/win/Windows2022-Readme.md?plain=1#L215>.

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage>
- run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
cd code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fixme-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
check-fixme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage>
- run: tool/check-fixme
2 changes: 1 addition & 1 deletion .github/workflows/rst-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
check-rst:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage>
- name: Install docutils
run: sudo apt-get install -y docutils
- name: Check reStructuredText syntax
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shell-script-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
check-shell-scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4 # see <https://github.com/actions/checkout/blob/main/README.md#usage>
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Check shell scripts
Expand Down

0 comments on commit 8d2019b

Please sign in to comment.