Skip to content

Commit

Permalink
Fix action warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sergcpp committed Jan 31, 2024
1 parent 3dbe5ae commit 77e6a48
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test-sde/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
runs:
using: 'composite'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.bin-dir }}
path: ${{ inputs.bin-dir }}/
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
runs:
using: 'composite'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.bin-dir }}
path: ${{ inputs.bin-dir }}/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
config: "Release"
bin-dir: "windows-x86_64"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x86_64
path: windows-x86_64/
Expand All @@ -40,7 +40,7 @@ jobs:
config: "Release"
bin-dir: "windows-arm64"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-arm64
path: windows-arm64/
Expand All @@ -60,7 +60,7 @@ jobs:
config: "Release"
bin-dir: "linux-x86_64"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-x86_64
path: linux-x86_64/
Expand All @@ -80,7 +80,7 @@ jobs:
config: "Release"
bin-dir: "macos-universal"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-universal
path: macos-universal/
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
config: "Release"
bin-dir: "windows-x86_64"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x86_64
path: windows-x86_64/
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
config: "Asan"
bin-dir: "windows-x86_64-asan"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x86_64-asan
path: windows-x86_64-asan/
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
config: "Release"
bin-dir: "windows-arm64"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-arm64
path: windows-arm64/
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
config: "Release"
bin-dir: "linux-x86_64"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-x86_64
path: linux-x86_64/
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
config: "Tsan"
bin-dir: "linux-x86_64-tsan"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-tsan
path: linux-x86_64-tsan/
Expand All @@ -247,7 +247,7 @@ jobs:
config: "Release"
bin-dir: "macos-universal"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-universal
path: macos-universal/
Expand Down

0 comments on commit 77e6a48

Please sign in to comment.