Skip to content

Commit

Permalink
Fix GitHub action that publishes compiled version spec from main
Browse files Browse the repository at this point in the history
Upgrade the download-artifact action from the version that github
blocked (due to a security issue) to latest, but that breaks other
things. So upgrade various gitlab actions to latest versions to
resolve this and other (non-fatal) warnings we were getting in the
frontend, e.g. things like:

The following artifacts were uploaded using a version of actions/upload-artifac\
t that is scheduled for deprecation: "github-pages".
  • Loading branch information
jogu committed Sep 10, 2024
1 parent 3f88f5e commit 67e10df
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build-OID4VCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Compile site assets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run the build process with Docker
run: |
docker run \
Expand All @@ -19,7 +19,7 @@ jobs:
- name: rename
run: |
mv ./openid-4-verifiable-credential-issuance-1_0*.html ./openid-4-verifiable-credential-issuance-wg-draft.html
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
# Artifact name
name: output # optional
Expand All @@ -39,13 +39,13 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: output
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: .
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 67e10df

Please sign in to comment.