From aa7ded7a5516dfef795a07bda30f418c379b7361 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Feb 2025 11:47:47 +0000 Subject: [PATCH 1/3] Bump leafo/gh-actions-luarocks from 4 to 5 Bumps [leafo/gh-actions-luarocks](https://github.com/leafo/gh-actions-luarocks) from 4 to 5. - [Release notes](https://github.com/leafo/gh-actions-luarocks/releases) - [Commits](https://github.com/leafo/gh-actions-luarocks/compare/v4...v5) --- updated-dependencies: - dependency-name: leafo/gh-actions-luarocks dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b81797ea..cf53db00 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -56,7 +56,7 @@ jobs: uses: leafo/gh-actions-lua@v10 - name: Install LuaRocks - uses: leafo/gh-actions-luarocks@v4 + uses: leafo/gh-actions-luarocks@v5 - name: Install lunajson run: luarocks install lunajson From 92fa33315c038569aa218fbb2efe2b933fab43a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Feb 2025 11:47:50 +0000 Subject: [PATCH 2/3] Bump leafo/gh-actions-lua from 10 to 11 Bumps [leafo/gh-actions-lua](https://github.com/leafo/gh-actions-lua) from 10 to 11. - [Release notes](https://github.com/leafo/gh-actions-lua/releases) - [Commits](https://github.com/leafo/gh-actions-lua/compare/v10...v11) --- updated-dependencies: - dependency-name: leafo/gh-actions-lua dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b81797ea..062195a6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -53,7 +53,7 @@ jobs: cd ../../ - name: Install Lua - uses: leafo/gh-actions-lua@v10 + uses: leafo/gh-actions-lua@v11 - name: Install LuaRocks uses: leafo/gh-actions-luarocks@v4 From cbe7e5e5dcd0a09b801c81d3bb8634f4148cf7b3 Mon Sep 17 00:00:00 2001 From: Aaron Sherber Date: Mon, 3 Mar 2025 18:53:13 -0500 Subject: [PATCH 3/3] Don't run workflow on an autopublish --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b81797ea..a01b2b26 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,6 +11,7 @@ on: jobs: deploy: runs-on: ubuntu-latest + if: ${{ ! contains(github.event.head_commit.message, 'autopublish') }} steps: - name: Checkout this repository uses: actions/checkout@v4