diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-09-10 22:13:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-10 22:13:01 +0200 |
| commit | 459de29a87bd400ea575e99d21297c6c288a2c35 (patch) | |
| tree | a8eda3878442a5b6dfe2166951cfd6322b24f5ed /.github/workflows | |
| parent | beb10cce638e093074d208fef059f2f402658ea9 (diff) | |
| parent | 73eea33b567950211ee39409ae06b4cb32d3cc14 (diff) | |
Merge pull request #4193 from odin-lang/dependabot/github_actions/dot-github/workflows/actions/download-artifact-4.1.7
Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/nightly.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0c5526d0f..e29aceef7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -160,22 +160,22 @@ jobs: run: python -c "import sys; print(sys.version)" - name: Download Windows artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4.1.7 with: name: windows_artifacts - name: Download Ubuntu artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4.1.7 with: name: ubuntu_artifacts - name: Download macOS artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4.1.7 with: name: macos_artifacts - name: Download macOS arm artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4.1.7 with: name: macos_arm_artifacts |