From ff5491e2ea4e49175b83563769ea0bc588c5c61b Mon Sep 17 00:00:00 2001 From: Daniel Yates Date: Thu, 24 Aug 2023 23:36:42 +0100 Subject: [PATCH] Update export workflow actions --- .github/workflows/export.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index 32187280d2..a2a11d7e91 100644 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Remove old files run: | @@ -17,12 +17,12 @@ jobs: rm -r !(*.git*|*.sublime-*|*.md) - name: Install Lua - uses: leafo/gh-actions-lua@v8.0.0 + uses: leafo/gh-actions-lua@v10.0.0 with: luaVersion: "5.2" - name: Checkout InterfaceExport - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: Gethe/InterfaceExport path: InterfaceExport @@ -40,8 +40,9 @@ jobs: path: "version.txt" - name: Add & Commit - uses: EndBug/add-and-commit@v4 + uses: EndBug/add-and-commit@latest with: message: ${{ steps.version.outputs.contents }} + default_author: github_actions env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}