Skip to content

Commit

Permalink
Update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
wzkres authored Jan 28, 2024
1 parent a657ff5 commit 597c9c0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Check 3rdparty prebuilt cache (Linux & macOS)
id: cache-nix
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: 3rdparty/prebuilt
key: ${{ runner.os }}-${{ matrix.platform }}-build-${{ hashFiles('3rdparty/build.sh') }}
if: runner.os == 'Linux' || runner.os == 'macOS'

- name: Check 3rdparty prebuilt cache (Windows)
id: cache-win
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: 3rdparty/prebuilt
key: ${{ runner.os }}-${{ matrix.platform }}-build-${{ hashFiles('3rdparty/build.bat') }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
# run: pve-ddns-client

- name: Upload artifact (Linux & macOS)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-artifact
path: |
Expand All @@ -84,7 +84,7 @@ jobs:
if: runner.os == 'Linux' || runner.os == 'macOS'

- name: Upload artifact (Windows)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-artifact
path: |
Expand Down

0 comments on commit 597c9c0

Please sign in to comment.