Skip to content
Open
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/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout RFC
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install dependencies
run: sudo apt update && sudo apt install -y make python3-pip libxml2-dev libxslt1-dev libyaml-dev
- name: Install pipenv
Expand All @@ -20,12 +20,12 @@ jobs:
- name: build txt
run: pipenv run make openvpn-wire-protocol.txt
- name: Archive html artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: openvpn-wire-protocol.html
path: openvpn-wire-protocol.html
- name: Archive txt artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: openvpn-wire-protocol.txt
path: openvpn-wire-protocol.txt
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Upload static files as artifact
id: deployment
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }}
uses: actions/upload-pages-artifact@v3.0.1
uses: actions/upload-pages-artifact@v4.0.0
with:
path: pages/

Expand Down