diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index 11af9885..e9ac8ada 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -3,5 +3,5 @@ self-hosted-runner: labels: # Not self hosted but actionlint still does not have a # release out supporting it - - macos-13-large - - macos-13-xlarge + - macos-13 + - macos-14 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 6ceb807c..36f0e2b1 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -133,7 +133,7 @@ jobs: - name: Install Salt run: | - curl -L https://bootstrap.saltstack.com | sudo sh -s -- -M -X -x python3 stable ${{ matrix.salt-version }} + curl -L https://github.com/saltstack/salt-bootstrap/releases/latest/download/bootstrap-salt.sh | sudo sh -s -- -M -X -x python3 stable ${{ matrix.salt-version }} sudo apt-get install -y salt-api salt-ssh salt-syndic salt-cloud python3-pip for service in $(sudo systemctl list-unit-files | grep salt | grep -v @ | awk '{ print $1 }'); do sudo systemctl stop "$service"; done @@ -269,7 +269,7 @@ jobs: MacOS: - runs-on: ${{ github.event.repository.fork && 'macos-latest' || 'macos-13-large' }} + runs-on: ${{ github.event.repository.fork && 'macos-latest' || 'macos-13' }} needs: Pre-Commit timeout-minutes: 90