Skip to content

Commit

Permalink
add apt update
Browse files Browse the repository at this point in the history
  • Loading branch information
kota65535 committed Jun 25, 2021
1 parent 885df39 commit ac26cea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install OpenVPN
run: sudo apt install -y openvpn openvpn-systemd-resolved
run: |
sudo apt update
sudo apt install -y openvpn openvpn-systemd-resolved
- name: Connect to VPN
uses: "./"
with:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ All authentication inputs should be provided by encrypted secrets environment va
- name: Checkout
uses: actions/checkout@v2
- name: Install OpenVPN
run: sudo apt install -y openvpn openvpn-systemd-resolved
run: |
sudo apt update
sudo apt install -y openvpn openvpn-systemd-resolved
- name: Connect to VPN
uses: "kota65535/github-openvpn-connect-action@v1"
with:
Expand Down

0 comments on commit ac26cea

Please sign in to comment.