@@ -31,18 +31,25 @@ jobs:
3131 matrix :
3232 os : [ubuntu-latest]
3333 python-version : ["3.11"]
34+ <<<<<<< before updating
3435 airflow : ["2", "3", ""]
3536
3637 steps :
3738 - uses : actions/checkout@v7
39+ =======
40+ node-version : [22.x]
41+
42+ steps :
43+ - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
44+ >>>>>>> after updating
3845
3946 - uses : actions-ext/python/setup@main
4047 with :
4148 version : ${{ matrix.python-version }}
4249
4350 - uses : actions-ext/node/setup@main
4451 with :
45- version : 22.x
52+ version : ${{ matrix.node-version }}
4653
4754 - name : Install dependencies
4855 run : make develop
@@ -71,20 +78,20 @@ jobs:
7178 if : matrix.os == 'ubuntu-latest'
7279
7380 - name : Upload test results
74- uses : actions/upload-artifact@v7
81+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
7582 with :
7683 name : test-results-${{ matrix.os }}-${{ matrix.python-version }}
7784 path : ' **/junit.xml'
7885 if : matrix.airflow == '2'
7986
8087 - name : Publish Unit Test Results
81- uses : EnricoMi/publish-unit-test-result-action@v2
88+ uses : EnricoMi/publish-unit-test-result-action@d0a4676d0e0b938bc201470d88276b7c74c712b3 # v2.24.0
8289 with :
8390 files : ' **/junit.xml'
8491 if : matrix.airflow == '2'
8592
8693 - name : Upload coverage
87- uses : codecov/codecov-action@v6
94+ uses : codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
8895 with :
8996 token : ${{ secrets.CODECOV_TOKEN }}
9097 if : matrix.airflow == '2'
@@ -93,7 +100,17 @@ jobs:
93100 run : make dist
94101 if : matrix.airflow == '2'
95102
96- - uses : actions/upload-artifact@v7
103+ - uses : actions-ext/python/test-wheel@main
104+ with :
105+ module : airflow_config
106+ if : matrix.os == 'ubuntu-latest'
107+
108+ - uses : actions-ext/python/test-sdist@main
109+ with :
110+ module : airflow_config
111+ if : matrix.os == 'ubuntu-latest'
112+
113+ - uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
97114 with :
98115 name : dist-${{matrix.os}}
99116 path : dist
0 commit comments