diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e091db5dcc..9dc60edca3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: # we just want the dev extras so we have a known version of tox and coverage python -m pip install ./core[dev] - name: Get packages - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.0.0 with: name: ${{ needs.package.outputs.artifact-name }} - name: Test @@ -118,7 +118,7 @@ jobs: # we just want the dev extras so we have a known version of coverage python -m pip install ./core[dev] - name: Retrieve coverage data - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.0.0 with: name: core-coverage-data path: core diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d32924938..783021c374 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV - name: Get packages - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.0.0 with: name: ${{ needs.ci.outputs.artifact-name }} @@ -64,7 +64,7 @@ jobs: - "toga_winforms" steps: - name: Get packages - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.0.0 with: name: ${{ needs.ci.outputs.artifact-name }} diff --git a/changes/2285.misc.rst b/changes/2285.misc.rst new file mode 100644 index 0000000000..dbfb22abac --- /dev/null +++ b/changes/2285.misc.rst @@ -0,0 +1 @@ +Updated actions/download-artifact from 3.0.2 to 4.0.0.