Skip to content

Commit

Permalink
build(deps-dev): update actions/upload|download-artifact action to v4 (
Browse files Browse the repository at this point in the history
…#219)

* build(deps-dev): update actions/download-artifact action to v4

* build(deps-dev): update actions/upload-artifact action to v4

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 24, 2023
1 parent 99a6569 commit fa14142
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: cd .ci && make ${{ inputs.target }}
- name: Upload built app
if: ${{ inputs.artifact-name != '' }}
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4
with:
name: ${{ inputs.artifact-name }}
path: 'dist/@davidlj95/website/browser'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-deploy-cloudflare-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download built app
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: ${{ inputs.build-artifact-name }}
# This whole step was created to mitigate an error: Cloudflare Pages deploying failed as PR branch was removed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Download built app
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: ${{ inputs.build-artifact-name }}
- name: Setup Pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# No setup step needed: latest stable Node.js & npm comes included with GitHub runners
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md
- name: Download built app
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: ${{ inputs.build-artifact-name }}
- name: Run Lighthouse CI
Expand Down

0 comments on commit fa14142

Please sign in to comment.