Skip to content

Commit

Permalink
Update from deprecated actions/checkout and actions/upload-artifact v…
Browse files Browse the repository at this point in the history
…ersions to v4.
  • Loading branch information
JulianGro committed Jun 13, 2024
1 parent 38d399e commit c65d844
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_server_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:
fi
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: false
fetch-depth: 1
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master_deploy_apidocs.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master_deploy_doxygen.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -14,7 +14,7 @@ jobs:

name: Build and deploy Doxygen documentation
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit c65d844

Please sign in to comment.