Skip to content

Commit

Permalink
Merge branch 'master' into remove_payload_Serial
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcmarrow authored Aug 8, 2023
2 parents cbc40b7 + 7ec90b0 commit 4c23f43
Show file tree
Hide file tree
Showing 253 changed files with 7,599 additions and 4,088 deletions.
23 changes: 0 additions & 23 deletions .github/actions/get-pull-labels/action.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/actions/get-pull-number/action.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/actions/get-pull-request/action.yml

This file was deleted.

7 changes: 6 additions & 1 deletion .github/actions/setup-python-tools-scripts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ runs:
shell: bash
working-directory: ${{ inputs.cwd }}
run: |
python3 -m pip install -r requirements/static/ci/py${{ steps.get-python-version.outputs.version }}/tools.txt
(python3 -m pip install --help | grep break-system-packages > /dev/null 2>&1) && exitcode=0 || exitcode=1
if [ $exitcode -eq 0 ]; then
python3 -m pip install --break-system-packages -r requirements/static/ci/py${{ steps.get-python-version.outputs.version }}/tools.txt
else
python3 -m pip install -r requirements/static/ci/py${{ steps.get-python-version.outputs.version }}/tools.txt
fi
- name: Get 'python-tools-scripts' Version
id: get-version
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-relenv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inputs:
required: false
type: string
description: The version of relenv to use
default: 0.12.3
default: 0.13.2

outputs:
version:
Expand Down
4 changes: 2 additions & 2 deletions .github/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ newIssueWelcomeComment: >
- [Community Wiki](https://github.com/saltstack/community/wiki)
- [Salt’s Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
- [Join our Community Slack](https://join.slack.com/t/saltstackcommunity/shared_invite/zt-3av8jjyf-oBQ2M0vhXOhJpNpRkPWBvg)
- [Join our Community Slack](https://join.slack.com/t/saltstackcommunity/shared_invite/zt-1zlfxffs1-NuEH~G9TzOeuNGdsfZIl3w)
- [IRC on LiberaChat](https://web.libera.chat/#salt)
- [Salt Project YouTube channel](https://www.youtube.com/channel/UCpveTIucFx9ljGelW63-BWg)
- [Salt Project Twitch channel](https://www.twitch.tv/saltprojectoss)
Expand All @@ -39,7 +39,7 @@ newPRWelcomeComment: >
- [Community Wiki](https://github.com/saltstack/community/wiki)
- [Salt’s Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
- [Join our Community Slack](https://join.slack.com/t/saltstackcommunity/shared_invite/zt-3av8jjyf-oBQ2M0vhXOhJpNpRkPWBvg)
- [Join our Community Slack](https://join.slack.com/t/saltstackcommunity/shared_invite/zt-1zlfxffs1-NuEH~G9TzOeuNGdsfZIl3w)
- [IRC on LiberaChat](https://web.libera.chat/#salt)
- [Salt Project YouTube channel](https://www.youtube.com/channel/UCpveTIucFx9ljGelW63-BWg)
- [Salt Project Twitch channel](https://www.twitch.tv/saltprojectoss)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-deb-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- src

container:
image: ghcr.io/saltstack/salt-ci-containers/packaging:debian-11
image: ghcr.io/saltstack/salt-ci-containers/packaging:debian-12

steps:
# Checkout here so we can easily use custom actions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-deps-onedir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ on:
relenv-version:
required: false
type: string
default: 0.12.3
default: 0.13.2
description: The version of relenv to use
python-version:
required: false
type: string
default: 3.10.9
default: 3.10.12
description: The version of python to use with relenv

env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-salt-onedir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ on:
relenv-version:
required: false
type: string
default: 0.12.3
default: 0.13.2
description: The version of relenv to use
python-version:
required: false
type: string
default: 3.10.9
default: 3.10.12
description: The version of python to use with relenv

env:
Expand Down
Loading

0 comments on commit 4c23f43

Please sign in to comment.