Skip to content

Commit

Permalink
Fix deprecated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FigBug committed Sep 18, 2024
1 parent a3efaa2 commit 35dd83b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Run script"
run: ./ci/build.sh
shell: bash
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: Linux
path: bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
timeout-minutes: 60
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Run script"
run: ./ci/build.sh
shell: bash
Expand All @@ -16,7 +16,7 @@ jobs:
INSTALLER: ${{ secrets.INSTALLER }}
APPLE_PASS: ${{ secrets.APPLE_PASS }}
APPLE_USER: ${{ secrets.APPLE_USER }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: Mac
path: bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
timeout-minutes: 40
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Run script"
run: ./ci/build.sh
shell: bash
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: Windows
path: bin
4 changes: 2 additions & 2 deletions .github/workflows/update_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

Expand All @@ -22,7 +22,7 @@ jobs:
make
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
Expand Down

0 comments on commit 35dd83b

Please sign in to comment.