mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Update from deprecated actions/checkout and actions/upload-artifact versions to v4.
This commit is contained in:
parent
38d399e535
commit
c65d84446b
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
|
@ -213,7 +213,7 @@ jobs:
|
|||
fi
|
||||
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
fetch-depth: 1
|
||||
|
@ -286,7 +286,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
|
@ -120,7 +120,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
|
@ -165,7 +165,7 @@ jobs:
|
|||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
fetch-depth: 1
|
||||
|
@ -335,7 +335,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