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 marketplace actions to v4 #906

Merged
merged 1 commit into from
Mar 15, 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
20 changes: 10 additions & 10 deletions .github/workflows/pull_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
# outputs:
# changes: ${{ steps.check_if_changed.outputs.changes }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Process all the metadata using the script for that
- name: Process Metadata
run: |
bash .github/scripts/process_metadata.sh

- name: Upload json file as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: json_artifact
path: module_data.json
Expand All @@ -49,7 +49,7 @@ jobs:
changes: ${{ steps.check_if_changed.outputs.changes }}
steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: json_artifact

Expand Down Expand Up @@ -104,10 +104,10 @@ jobs:
OUTPUT3: ${{needs.run_script.outputs.changes}}
run: echo "The changes variable is $OUTPUT3"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download json artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: json_artifact

Expand Down Expand Up @@ -154,14 +154,14 @@ jobs:
runs-on: ubuntu-latest
needs: metadata_changed_message
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build webpage markdown file
run: |
bash .github/scripts/public_list_of_modules.sh

- name: Upload webpage file as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: webpage_artifact
path: new_list_of_modules.md
Expand All @@ -176,7 +176,7 @@ jobs:
changes: ${{ steps.check_if_website_changed.outputs.changes }}
steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: webpage_artifact

Expand Down Expand Up @@ -214,10 +214,10 @@ jobs:
needs: check_list_of_modules_for_changes
if: needs.check_list_of_modules_for_changes.outputs.changes == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download webpage artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: webpage_artifact

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version_incrementation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
check-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get git diff to feed to script
Expand Down