Skip to content

Commit 3f1e4f8

Browse files
authored
Merge pull request #2064 from LORgames/ssurtees/actionsUpdate
Updated actions from v2 to v3
2 parents 7ddf533 + ea864da commit 3f1e4f8

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
platform: [x64]
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
- name: Build
1616
run: make -f Bootstrap.mak linux PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }}
1717
- name: Test
@@ -20,7 +20,7 @@ jobs:
2020
run: bin/${{ matrix.config }}/premake5 docs-check
2121
- name: Upload Artifacts
2222
if: matrix.config == 'release'
23-
uses: actions/upload-artifact@v2
23+
uses: actions/upload-artifact@v3
2424
with:
2525
name: premake-linux-${{ matrix.platform }}
2626
path: bin/${{ matrix.config }}/
@@ -32,7 +32,7 @@ jobs:
3232
platform: [x64]
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
- name: Build
3737
run: make -f Bootstrap.mak macosx PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }}
3838
- name: Test
@@ -41,7 +41,7 @@ jobs:
4141
run: bin/${{ matrix.config }}/premake5 docs-check
4242
- name: Upload Artifacts
4343
if: matrix.config == 'release'
44-
uses: actions/upload-artifact@v2
44+
uses: actions/upload-artifact@v3
4545
with:
4646
name: premake-macosx-${{ matrix.platform }}
4747
path: bin/${{ matrix.config }}/
@@ -53,7 +53,7 @@ jobs:
5353
platform: [Win32, x64]
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v3
5757
- name: Build
5858
run: |
5959
$vcvarsall_path = vswhere.exe -find VC\Auxiliary\Build\vcvarsall.bat
@@ -66,7 +66,7 @@ jobs:
6666
shell: cmd
6767
- name: Upload Artifacts
6868
if: matrix.config == 'release'
69-
uses: actions/upload-artifact@v2
69+
uses: actions/upload-artifact@v3
7070
with:
7171
name: premake-windows-${{ matrix.platform }}
7272
path: bin\${{ matrix.config }}\
@@ -86,7 +86,7 @@ jobs:
8686
shell: msys2 {0}
8787
steps:
8888
- name: Checkout
89-
uses: actions/checkout@v2
89+
uses: actions/checkout@v3
9090
- name: 'Setup MSYS2'
9191
uses: msys2/setup-msys2@v2
9292
with:
@@ -105,7 +105,7 @@ jobs:
105105
run: bin/${{ matrix.config }}/premake5.exe docs-check
106106
- name: Upload Artifacts
107107
if: matrix.config == 'release'
108-
uses: actions/upload-artifact@v2
108+
uses: actions/upload-artifact@v3
109109
with:
110110
name: premake-${{ matrix.msystem }}-${{ matrix.platform }}
111111
path: bin\${{ matrix.config }}\

.github/workflows/website.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
checks:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
1515
with:
1616
node-version: '14'
1717
- name: Test Build
@@ -23,10 +23,10 @@ jobs:
2323
if: github.repository_owner == 'premake' && github.event_name == 'push' && github.ref == 'refs/heads/master'
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
29-
- uses: actions/setup-node@v2
29+
- uses: actions/setup-node@v3
3030
with:
3131
node-version: '14'
3232
- name: Add key to allow access to repository

0 commit comments

Comments
 (0)