Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade github actions to v4 #130

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target INSTALL

- name: Archive raw files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x86
path: ${{github.workspace}}/install/
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target INSTALL

- name: Archive raw files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-x64
path: ${{github.workspace}}/install/
Expand All @@ -103,7 +103,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -112,7 +112,7 @@ jobs:

- name: Restore ffmpeg cache
id: cache-ffmpeg
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-ffmpeg-build
with:
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install

- name: Archive raw files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-x64
path: ${{github.workspace}}/install/
Expand All @@ -170,24 +170,24 @@ jobs:
- build-linux64
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download Windows x86 artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: windows-x86
path: ${{github.workspace}}/install

- name: Download Windows x64 artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: windows-x64
path: ${{github.workspace}}/install

- name: Download Linux x64 artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: linux-x64
path: ${{github.workspace}}/install
Expand All @@ -196,7 +196,7 @@ jobs:
run: cmake -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install -DRPSB_PLUGINFILE_OUTPUT_DIR=${{github.workspace}}/release -P create-pluginfile.cmake

- name: Archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plugin-windows-linux
path: ${{github.workspace}}/release/*.ts3_plugin
Expand Down