diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-26 22:31:39 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-26 22:31:39 (GMT) |
commit | c54b502e0d4673f4250097cdc2358cac90c56ecc (patch) | |
tree | 36d8911ff6166e8215d2102fc71ead6996478f78 /.github | |
parent | ffda1b67f7a2399cc521a0d808f9b099f0bf26c0 (diff) | |
download | tcl-c54b502e0d4673f4250097cdc2358cac90c56ecc.zip tcl-c54b502e0d4673f4250097cdc2358cac90c56ecc.tar.gz tcl-c54b502e0d4673f4250097cdc2358cac90c56ecc.tar.bz2 |
[https://github.com/tcltk/tcl/pull/15] and typo
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/mac-build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index b94ed97..0bbfbd2 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -19,7 +19,7 @@ jobs: working-directory: unix steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: touch tclStubInit.c working-directory: generic diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 8593989..5b0c657 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -11,7 +11,7 @@ jobs: working-directory: macosx steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: touch tclStubInit.c working-directory: generic @@ -37,7 +37,7 @@ jobs: working-directory: unix steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch tclStubInit.c diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 79a7e68..9a0ac98 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -19,7 +19,7 @@ jobs: # Using powershell means we need to explicitly stop on failure steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Init MSVC uses: ilammy/msvc-dev-cmd@v1 - name: Build ${{ matrix.cfgopt }} @@ -58,7 +58,7 @@ jobs: # Using powershell means we need to explicitly stop on failure steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install MSYS2 and Make run: choco install msys2 make - name: Prepare |