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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #879

Merged
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/update-dependencies-from-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
on:
workflow_dispatch:
schedule:
- cron: '57 13 * * *' # daily at 13:57 UTC

Check warning on line 6 in .github/workflows/update-dependencies-from-metadata.yml

View workflow job for this annotation

GitHub Actions / lintYaml

6:27 [comments] too few spaces before comment

jobs:
retrieve:
Expand Down Expand Up @@ -211,7 +211,7 @@
uses: actions/checkout@v3

- name: Download artifact files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: '${{ needs.retrieve.outputs.id }}-${{ matrix.includes.version }}-${{ matrix.includes.target }}'

Expand Down Expand Up @@ -241,7 +241,7 @@
run: echo "checksum=$(cat ${{ steps.get-file-names.outputs.checksum-file }})" >> "$GITHUB_OUTPUT"

- name: Download metadata.json
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: metadata.json

Expand Down Expand Up @@ -290,7 +290,7 @@
echo "outputdir=$(mktemp -d)" >> "$GITHUB_OUTPUT"

- name: Download metadata.json
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: metadata.json
path: "${{ steps.make-outputdir.outputs.outputdir }}"
Expand Down
Loading