Skip to content

Commit

Permalink
update github actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
programminghoch10 committed Mar 11, 2024
1 parent 0f6220c commit 90fce86
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup git
Expand All @@ -33,13 +33,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run compile.sh
run: ./compile.sh
- name: Upload Build Result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MagicalProtection.zip
path: |
Expand All @@ -51,15 +51,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup git
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Download Build Result
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: MagicalProtection.zip
- name: Run deploy.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Compile
run: ./compile.sh
- name: Upload Result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MagicalProtection.zip
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run shellcheck
Expand Down

0 comments on commit 90fce86

Please sign in to comment.