Skip to content

Commit

Permalink
Fix functionality of OCI update check actions
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-antonyuk committed Oct 2, 2024
1 parent b830d74 commit 24cae02
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ run-name: >
Update workspace from old version test.
on:
push:
branches:
- bugfix/package-build
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
Expand Down Expand Up @@ -81,8 +84,8 @@ jobs:
update-test:
name: "Update test on ${{ matrix.name }}"
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-24.04
if: ${{ github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' }}
needs: prepare
strategy:
fail-fast: false
Expand All @@ -105,6 +108,8 @@ jobs:
- name: Get update and install vagrant
run: |
set -eux
sudo wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
sudo echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update -y
sudo apt install vagrant virtualbox -y
Expand Down

0 comments on commit 24cae02

Please sign in to comment.