Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed runners in workflows to ubuntu 22.04 #173

Closed
Closed
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/workflows/Test_installation_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ permissions:

jobs:
run-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false # If a job fails, the rest of jobs will not be canceled
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ permissions:

jobs:
run-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false # If a job fails, the rest of jobs will not be canceled
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builder_installation_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ permissions:

jobs:
Build_Installation_Assistant:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: View parameters
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/offline-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
Build-wazuh-install-script:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Cancel previous runs
uses: fkirc/skip-duplicate-actions@master
Expand All @@ -36,7 +36,7 @@ jobs:
if-no-files-found: error

Test-offline-installation-debian:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: Build-wazuh-install-script
steps:
- uses: actions/checkout@v4
Expand All @@ -54,7 +54,7 @@ jobs:
run: sudo bash $GITHUB_WORKSPACE/.github/actions/offline-installation/offline-installation.sh

Test-offline-installation-rpm:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: Build-wazuh-install-script
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/password-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
Build-password-tool-and-wazuh-install-scripts:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build password-tool and wazuh-install scripts
Expand All @@ -22,7 +22,7 @@ jobs:
if-no-files-found: error

test-password-tool-success:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: Build-password-tool-and-wazuh-install-scripts
steps:
- uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:
run: sudo bash .github/actions/passwords-tool/tests-stack-success.sh

test-password-tool-failure:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: Build-password-tool-and-wazuh-install-scripts
steps:
- uses: actions/checkout@v4
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Change Log
All notable changes to this project will be documented in this file.

## [4.10.3]

### Added

- None

### Changed

- Changed runners in workflows to ubuntu 22.04 ([#173](https://github.com/wazuh/wazuh-installation-assistant/pull/173))

### Fixed

- None

### Deleted

- None

## [4.10.2]

### Added
Expand Down