Skip to content

Commit

Permalink
GitHub workflows: Update checkout and upload-artifact actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
LegendaryGuard committed Nov 29, 2024
1 parent 4f9cb18 commit f163486
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Windows QVM
run: |
./build.bat
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update and get packages
run: |
sudo apt-get update # && sudo apt-get upgrade -y
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
ARCHIVE: 1

- name: Store QVM artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: QVMs
path: |
Expand All @@ -60,7 +60,7 @@ jobs:
retention-days: 5

- name: Store Linux x86 .so artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-x86
path: |
Expand All @@ -70,7 +70,7 @@ jobs:
retention-days: 5

- name: Store Linux x86_64 .so artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-x86_64
path: |
Expand All @@ -80,7 +80,7 @@ jobs:
retention-days: 5

- name: Store Windows x86 DLL artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x86
path: |
Expand All @@ -90,7 +90,7 @@ jobs:
retention-days: 5

- name: Store Windows x86_64 DLL artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x86_64
path: |
Expand Down

0 comments on commit f163486

Please sign in to comment.