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/upload-artifact from 2 to 3 #297

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,19 +161,19 @@ jobs:
mv build/web-stories build/web-stories-dev/

- name: Upload composer bundle
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: web-stories-composer
path: build/web-stories-composer

- name: Upload regular bundle
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: web-stories
path: build/web-stories-regular

- name: Upload development bundle
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: web-stories-dev
path: build/web-stories-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: npm run storybook:build

- name: Upload storybook
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: storybook-files
path: build/storybook
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/plugin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
echo "" > assets_version/assets_version.txt

- name: Upload assets version
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: assets-version
path: public/static/assets_version
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
GITHUB_AUTH: ${{ secrets.PLUGIN_RELEASE_ACCESS_TOKEN }}

- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: changelog
path: build/changelog
Expand Down Expand Up @@ -406,7 +406,7 @@ jobs:
mv build/*.zip build/release-assets/

- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release-assets
path: build/release-assets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-karma-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
flags: karmatests

- name: Upload CUJ coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: cuj-coverage-dashboard
path: build/cuj-coverage-dashboard.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-karma-editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
if: github.event.pull_request.draft == false

- name: Upload CUJ coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: cuj-coverage-edit-story
path: build/cuj-coverage-edit-story.md
Expand Down