mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 11:03:23 +02:00
Merge pull request #1023 from JulianGro/Update-deprecated-gha
Update from deprecated actions/checkout and actions/upload-artifact
This commit is contained in:
commit
893e1f98fa
5 changed files with 9 additions and 9 deletions
4
.github/workflows/linux_server_build.yml
vendored
4
.github/workflows/linux_server_build.yml
vendored
|
@ -220,7 +220,7 @@ jobs:
|
|||
fi
|
||||
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
fetch-depth: 1
|
||||
|
@ -293,7 +293,7 @@ jobs:
|
|||
|
||||
- name: Upload artifact to GitHub
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.ARTIFACT_PATTERN }}
|
||||
path: pkg-scripts/${{ env.ARTIFACT_PATTERN }}
|
||||
|
|
2
.github/workflows/master_build.yml
vendored
2
.github/workflows/master_build.yml
vendored
|
@ -122,7 +122,7 @@ jobs:
|
|||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
fetch-depth: 1
|
||||
|
|
4
.github/workflows/master_deploy_apidocs.yml
vendored
4
.github/workflows/master_deploy_apidocs.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
# Copyright 2022-2023 Overte e.V.
|
||||
# Copyright 2022-2024 Overte e.V.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
name: Master API-docs CI Build and Deploy
|
||||
|
@ -14,7 +14,7 @@ jobs:
|
|||
|
||||
name: Build and deploy API-docs
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
working-directory: tools/jsdoc
|
||||
|
|
4
.github/workflows/master_deploy_doxygen.yml
vendored
4
.github/workflows/master_deploy_doxygen.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
# Copyright 2022-2023 Overte e.V.
|
||||
# Copyright 2022-2024 Overte e.V.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
name: Master Doxygen CI Build and Deploy
|
||||
|
@ -14,7 +14,7 @@ jobs:
|
|||
|
||||
name: Build and deploy Doxygen documentation
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
|
4
.github/workflows/pr_build.yml
vendored
4
.github/workflows/pr_build.yml
vendored
|
@ -172,7 +172,7 @@ jobs:
|
|||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
fetch-depth: 1
|
||||
|
@ -342,7 +342,7 @@ jobs:
|
|||
|
||||
- name: Upload Artifact
|
||||
if: startsWith(matrix.os, 'Windows') || startsWith(matrix.os, 'macOS')
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.ARTIFACT_PATTERN }}
|
||||
path: ./build/${{ env.ARTIFACT_PATTERN }}
|
||||
|
|
Loading…
Reference in a new issue