diff --git a/.github/workflows/autoformat.yml b/.github/workflows/autoformat.yml index 136bfe1e..9536fe5b 100644 --- a/.github/workflows/autoformat.yml +++ b/.github/workflows/autoformat.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Set up StyLua uses: JohnnyMorganz/stylua-action@v2.0.0 diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index bbd37274..f1c84b42 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: sudo apt update && sudo apt install libgtk-3-0 libwebkit2gtk-4.0-37 --yes diff --git a/.github/workflows/ci-mac.yml b/.github/workflows/ci-mac.yml index e65c7aa5..89a296af 100644 --- a/.github/workflows/ci-mac.yml +++ b/.github/workflows/ci-mac.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Lua runtime run: ./download-runtime.sh && ./evo version diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index b0718228..01d6be52 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Lua runtime run: ./download-runtime.sh && ./evo.exe version diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 26375037..f31655a2 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Download luacheck run: curl --silent --location --output luacheck https://github.com/lunarmodules/luacheck/releases/download/v1.1.0/luacheck diff --git a/.github/workflows/typescript-build.yml b/.github/workflows/typescript-build.yml index af44d0dc..e55d2c00 100644 --- a/.github/workflows/typescript-build.yml +++ b/.github/workflows/typescript-build.yml @@ -10,7 +10,7 @@ jobs: name: Create JavaScript app bundle runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js environment uses: actions/setup-node@v3