Skip to content

Commit e1fe9d8

Browse files
committed
Upload github actions versions
1 parent 77e40ce commit e1fe9d8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/main.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
Setup:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: 'Setup'
1818
run: scripts/setup
1919
- name: 'Upload setup'
20-
uses: actions/upload-artifact@v1
20+
uses: actions/upload-artifact@v3
2121
with:
2222
name: src-downloads
2323
path: dist
@@ -33,44 +33,44 @@ jobs:
3333
- name: 'Disable git autocrlf'
3434
shell: bash
3535
run: git config --global core.autocrlf input
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
- name: 'Download dist'
38-
uses: actions/download-artifact@v2
38+
uses: actions/download-artifact@v3
3939
with:
4040
name: src-downloads
4141
path: dist
4242
- name: 'Build libraries'
4343
shell: cmd
4444
run: scripts/build-windows.bat ${{ matrix.wordsize }}
4545
- name: 'Upload staged files'
46-
uses: actions/upload-artifact@v1
46+
uses: actions/upload-artifact@v3
4747
with:
4848
name: stage-${{ matrix.wordsize }}
4949
path: stage/${{ matrix.wordsize }}
5050
Package:
5151
runs-on: ubuntu-latest
5252
needs: Build
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555
- name: 'Download dist'
56-
uses: actions/download-artifact@v2
56+
uses: actions/download-artifact@v3
5757
with:
5858
name: src-downloads
5959
path: dist
6060
- name: 'Download 32-bit stage'
61-
uses: actions/download-artifact@v2
61+
uses: actions/download-artifact@v3
6262
with:
6363
name: stage-32
6464
path: stage/32
6565
- name: 'Download 64-bit stage'
66-
uses: actions/download-artifact@v2
66+
uses: actions/download-artifact@v3
6767
with:
6868
name: stage-64
6969
path: stage/64
7070
- name: 'Package'
7171
run: scripts/package
7272
- name: 'Upload results'
73-
uses: actions/upload-artifact@v1
73+
uses: actions/upload-artifact@v3
7474
with:
7575
name: distribution
7676
path: distribution

0 commit comments

Comments
 (0)