Skip to content

Commit

Permalink
Upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lifenjoiner committed Mar 16, 2024
1 parent a7e7bc0 commit f8de4c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-CI-Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
echo "$BDir"
echo "$CDir"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Shallow fetch makes version unknown: git describe --abbrev=4 --match="$prefix*" HEAD
with:
fetch-depth: 0
Expand Down Expand Up @@ -147,15 +147,15 @@ jobs:
timeout-minutes: 5 # in case of stuck

- name: Upload wget
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{success()}} || ${{failure()}}
with:
name: wget-${{runner.os}}-${{matrix.ftype}}
path: |
${{env.CDir}}/src/wget
- name: Upload logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{failure()}}
with:
name: wget-${{runner.os}}-${{matrix.ftype}}-logs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/github-CI-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
echo "$BDir"
echo "$CDir"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Shallow fetch makes version unknown: git describe --abbrev=4 --match="$prefix*" HEAD
with:
fetch-depth: 0
Expand Down Expand Up @@ -193,15 +193,15 @@ jobs:
timeout-minutes: 5 # in case of stuck

- name: Upload wget
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{success()}} || ${{failure()}}
with:
name: wget-${{env.mingw}}-${{env.build_type}}_${{env.SHA}}
path: |
${{env.CDir}}/src/wget.exe
- name: Upload logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{failure()}}
with:
name: wget-${{env.mingw}}-${{env.build_type}}-logs
Expand Down

0 comments on commit f8de4c3

Please sign in to comment.