Skip to content

Commit

Permalink
Bump versions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lifegpc authored Jul 3, 2024
1 parent a4a8f25 commit 073ff53
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: cargo build -vv
- name: Run tests
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand All @@ -43,7 +43,7 @@ jobs:
python3 get_cache_key.py exiv2 || exit 1
- name: Cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: clib/
key: ${{ runner.os }}-${{ steps.cache_key.outputs.cache_key }}
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand All @@ -76,7 +76,7 @@ jobs:
python3 get_cache_key.py libzip x264 ffmpeg || exit 1
- name: Cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: clib/
key: ${{ runner.os }}-${{ steps.cache_key.outputs.cache_key }}
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: cargo build --features server,db_sqlite -vv
- name: Run tests
Expand All @@ -118,7 +118,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: cargo build --features db_all -vv
- name: Run tests
Expand All @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand All @@ -138,7 +138,7 @@ jobs:
python3 get_cache_key.py exiv2 libzip x264 ffmpeg || exit 1
- name: Cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: clib/
key: ${{ runner.os }}-${{ steps.cache_key.outputs.cache_key }}
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
shell: cmd
steps:
- name: Check Out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand All @@ -186,7 +186,7 @@ jobs:
python get_cache_key.py --prefix=win zlib pkgconf expat exiv2 openssl libzip x264 ffmpeg || exit 1
- name: Cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: clib/
key: win-${{ steps.cache_key.outputs.cache_key }}
Expand All @@ -201,7 +201,7 @@ jobs:
uses: ilammy/msvc-dev-cmd@v1
- name: Set up NASM
if: steps.cache.outputs.cache-hit != 'true'
uses: ilammy/setup-nasm@v1.3.0
uses: ilammy/setup-nasm@v1
- name: Setup MSYS2
if: steps.cache.outputs.cache-hit != 'true'
uses: msys2/setup-msys2@v2
Expand Down Expand Up @@ -282,13 +282,13 @@ jobs:
python scripts\pack_prog.py -o pixiv_downloader.pdb.7z -p %CD%/target/release-with-debug/pixiv_downloader.exe || exit 1
- name: Upload files
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixiv_downloader
path: ./pixiv_downloader.7z
- name: Upload pdb files
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixiv_downloader-pdb
path: ./pixiv_downloader.pdb.7z
Expand Down

0 comments on commit 073ff53

Please sign in to comment.