Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/health-check-integrity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
echo "$file has incorrect duration: $duration"
fi
done | tee ../../../${{ matrix.zone }}.v2
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: energy-price-${{ matrix.zone }}
path: |
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
echo "$file has incorrect duration: $duration"
fi
done | tee ../../../${{ matrix.zone }}
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: emission-${{ matrix.zone }}
path: ${{ matrix.zone }}
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
done | tee ../../../${{ matrix.zone }}.raw
echo "--- filtered output below ---"
cat ../../../${{ matrix.zone }}.raw | (grep -vf .ignore-grep || true) > ../../../${{ matrix.zone }}
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: renewables-${{ matrix.zone }}
path: ${{ matrix.zone }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/health-check-networks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
echo '::endgroup::'

echo "matrix=$(jq -c < matrix)" >> "$GITHUB_ENV"
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: networks
path: matrix
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
git add api/energy-price/
git diff --cached api/energy-price/ | tee ../energy-price.patch

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: energy-price
path: energy-price.patch
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
git add api/renewables/
git diff --cached api/renewables/ | tee ../renewables.patch

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: renewables
path: renewables.patch
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
git add api/emission/co2/
git diff --cached api/emission/co2/ | tee ../emission-co2.patch

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: emission-co2
path: emission-co2.patch
Expand Down
Loading