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

Update deprecated actions for DevelNUI #6324

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
-- print --format=json --include-hidden \
-o Artifacts/api.json Artifacts/bin/public/

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: reports
Expand All @@ -72,7 +72,7 @@ jobs:
dotnet-version: 3.1.x

- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: reports
path: Artifacts
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
base-file: Artifacts/base-api.json
output: Artifacts/api-comp.json

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: reports
path: Artifacts/api-comp.json
4 changes: 2 additions & 2 deletions .github/workflows/deploy-documents-for-tizen-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
cp .gitattributes _site/
tar cfz site.tar.gz _site/

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: documents
path: site.tar.gz
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: documents

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-documents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Archive Artifacts
run: |
tar cfz site.tar.gz _site/
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: documents
path: site.tar.gz
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: documents

Expand Down
Loading