Skip to content
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
2 changes: 1 addition & 1 deletion .github/actions/application-deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: azure/setup-kubectl@v2.0
- uses: azure/setup-kubectl@v3.0
with:
version: 'v1.23.6'
- name: Application deployment
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/docker-build-and-push/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ runs:
- name: Branch specific config
uses: ./.github/actions/branch-specific-config
id: branch-specific-config
- uses: docker/setup-buildx-action@v1
- uses: docker/setup-buildx-action@v2
- name: Build and push image
id: docker-build-and-push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: ${{ inputs.base-dir }}/${{ inputs.service-name }}
load: ${{ steps.branch-specific-config.outputs.docker-load }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/openvpn-kill/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:

sudo killall openvpn
- name: Upload VPN logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: VPN logs
path: ${{ steps.kill-openvpn.outputs.openvpn-log-dir }}
2 changes: 1 addition & 1 deletion .github/actions/openvpn-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:
CACHE_KEY: ${{ inputs.cache-key }}
OPENVPN_VERSION: ${{ inputs.openvpn-version }}
- name: Cache OpenVPN
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-openvpn
with:
path: "~/openvpn"
Expand Down