Skip to content

Commit aba1083

Browse files
authored
⬆️ Upgrade GitHub actions (#30)
2 parents 5720b28 + 598a599 commit aba1083

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v6
3030
- name: Get the version
3131
id: get_version
3232
run: |
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Version Check
4141
if: ${{ env.TAG_VERSION != env.FILE_VERSION && startsWith(github.ref, 'refs/tags/v')}}
42-
uses: actions/github-script@v3
42+
uses: actions/github-script@v8
4343
with:
4444
script: |
4545
const { TAG_VERSION, FILE_VERSION } = process.env
@@ -64,26 +64,26 @@ jobs:
6464
# Path to dependencies rockspec relative to GitHub workspace
6565

6666
# Upload the built applications
67-
- uses: actions/upload-artifact@v2
67+
- uses: actions/upload-artifact@v7
6868
with:
6969
name: space-love_macos-build
7070
path: ${{ steps.love-build.outputs.macos-filename }}
71-
- uses: actions/upload-artifact@v2
71+
- uses: actions/upload-artifact@v7
7272
with:
7373
name: space-love_win32-build
7474
path: ${{ steps.love-build.outputs.win32-filename }}
75-
- uses: actions/upload-artifact@v2
75+
- uses: actions/upload-artifact@v7
7676
with:
7777
name: space-love_win64-build
7878
path: ${{ steps.love-build.outputs.win64-filename }}
79-
- uses: actions/upload-artifact@v2
79+
- uses: actions/upload-artifact@v7
8080
with:
8181
name: space-love_love-build
8282
path: ${{ steps.love-build.outputs.love-filename }}
8383

8484
# If a tag was pushed, create a release
8585
- name: Release
86-
uses: softprops/action-gh-release@v1
86+
uses: softprops/action-gh-release@v2
8787
if: startsWith(github.ref, 'refs/tags/v')
8888
with:
8989
files: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
luacheck:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@master
10+
- uses: actions/checkout@v6
1111

1212
- name: Luacheck
1313
uses: nebularg/actions-luacheck@v1

0 commit comments

Comments
 (0)