diff options
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/onefiledist.yml | 8 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 5c177aa..e3ad637 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -28,7 +28,7 @@ jobs: working-directory: unix steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 7be147e..7119f34 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -18,7 +18,7 @@ jobs: working-directory: macosx steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h @@ -48,7 +48,7 @@ jobs: working-directory: unix steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h diff --git a/.github/workflows/onefiledist.yml b/.github/workflows/onefiledist.yml index 5c90701..a9f02c9 100644 --- a/.github/workflows/onefiledist.yml +++ b/.github/workflows/onefiledist.yml @@ -17,7 +17,7 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: | touch generic/tclStubInit.c generic/tclOOStubInit.c @@ -52,9 +52,9 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout create-dmg - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: create-dmg/create-dmg ref: v1.0.8 @@ -122,7 +122,7 @@ jobs: msystem: UCRT64 install: git mingw-w64-ucrt-x86_64-toolchain make zip - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: | touch generic/tclStubInit.c generic/tclOOStubInit.c diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 9c1fe43..13a1316 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -30,7 +30,7 @@ jobs: # Using powershell means we need to explicitly stop on failure steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Init MSVC uses: ilammy/msvc-dev-cmd@v1 - name: Build ${{ matrix.cfgopt }} @@ -75,7 +75,7 @@ jobs: msystem: MINGW64 install: git mingw-w64-x86_64-toolchain make - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h |