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

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #183

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
8 changes: 4 additions & 4 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
token: ${{ github.token }}
submodules: true

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.fontist
key: fontist-ubuntu-latest
Expand All @@ -23,7 +23,7 @@ jobs:

- run: metanorma site generate --agree-to-terms

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main'
with:
name: site
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: site

Expand All @@ -51,4 +51,4 @@ jobs:
with:
body: Automatic release of ${{ github.ref }}
files: |
package.zip
package.zip
Loading