Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/health-check-integrity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
publish-branch:
type: string
description: 'Publishing branch'
description: "Publishing branch"
required: true

permissions:
Expand Down 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 All @@ -173,17 +173,17 @@ jobs:
- check-renewables
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
path: artifacts/energy-price
pattern: energy-price-*
merge-multiple: true
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
path: artifacts/emission
pattern: emission-*
merge-multiple: true
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
path: artifacts/renewables
pattern: renewables-*
Expand All @@ -208,4 +208,4 @@ jobs:
if: github.ref == 'refs/heads/main'
with:
assignee: codereaper
title: 'Integrity check failed'
title: "Integrity check failed"
8 changes: 4 additions & 4 deletions .github/workflows/health-check-networks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
publish-branch:
type: string
description: 'Publishing branch'
description: "Publishing branch"
required: true

permissions:
Expand Down 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 All @@ -62,7 +62,7 @@ jobs:
needs: setup
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: networks
path: networks
Expand All @@ -83,4 +83,4 @@ jobs:
if: github.ref == 'refs/heads/main'
with:
assignee: codereaper
title: 'Networks are out of date'
title: "Networks are out of date"
16 changes: 8 additions & 8 deletions .github/workflows/pull-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: Update contents

on:
schedule:
- cron: '0 * * * *'
- cron: '5,15,30,45 11,12,13 * * *'
- cron: "0 * * * *"
- cron: "5,15,30,45 11,12,13 * * *"
workflow_dispatch:
inputs:
from-timestamp:
type: string
description: Pull data from this timestamp and onwards - requires both from and end timestamps
required: false
default: ''
default: ""
end-timestamp:
type: string
description: Pull data until reaching this timestamp - requires both from and end timestamps
required: false
default: ''
default: ""
push:
branches:
- main
Expand Down 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 All @@ -404,7 +404,7 @@ jobs:
- update-renewables-data
- update-co2-emission-data
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
merge-multiple: true

Expand Down
Loading