Skip to content

Commit 354d2a9

Browse files
authored
Disable process functions (#70)
* Disable process functions * Update integration-tests.yml * Update README.yaml
1 parent 048b02e commit 354d2a9

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/integration-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
component: "foobar"
4848
stack: "plat-ue2-sandbox"
4949
atmos-config-path: ${{ runner.temp }}
50-
atmos-version: 1.99.0
5150

5251
- uses: actions/checkout@v4
5352
with:
@@ -64,5 +63,4 @@ jobs:
6463
component: "foobar"
6564
stack: "plat-ue2-sandbox"
6665
atmos-config-path: ${{ runner.temp }}
67-
atmos-version: 1.99.0
6866
debug: true

README.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ usage: |-
6262
### Config
6363
6464
> [!IMPORTANT]
65-
> **Please note!** This GitHub Action only works with `atmos >= 1.99.0`.
65+
> **Please note!** This GitHub Action only works with `atmos >= 1.158.0`.
66+
> If you are using `atmos >= 1.99.0, < 1.158.0` please use `v3` version of this action.
6667
> If you are using `atmos >= 1.63.0, < 1.99.0` please use `v2` version of this action.
6768
> If you are using `atmos < 1.63.0` please use `v1` version of this action.
6869
@@ -211,6 +212,12 @@ usage: |-
211212
stack: "plat-ue2-sandbox"
212213
atmos-config-path: ./rootfs/usr/local/etc/atmos/
213214
```
215+
### Migrating from `v3` to `v4`
216+
217+
The notable changes in `v4` are:
218+
219+
- `v4` works only with `atmos >= 1.158.0`
220+
- `v4` supports atnos `templates` and `functions`
214221
215222
### Migrating from `v2` to `v3`
216223

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ inputs:
2222
atmos-version:
2323
description: The version of atmos to install
2424
required: false
25-
default: ">= 1.99.0"
25+
default: ">= 1.158.0"
2626
atmos-config-path:
2727
description: The path to the atmos.yaml file
2828
required: true
@@ -83,6 +83,7 @@ runs:
8383
# Here we do not process-templates because that requires terraform. Which we install after fetching the version
8484
# processing templates here can cause an issue where cached terraform versions conflict with the version we want to install
8585
process-templates: 'false'
86+
process-functions: 'false'
8687
settings: |
8788
- component: ${{ inputs.component }}
8889
stack: ${{ inputs.stack }}

0 commit comments

Comments
 (0)