Check SCL XSD 2007B version #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2021 Alliander N.V. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Check SCL XSD 2007B version | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # “At 00:00 on Sunday.” | |
jobs: | |
check_newer_version_job: | |
runs-on: ubuntu-latest | |
name: Checking for newer versions of the SCL XSD 2007B schemas. | |
steps: | |
- name: Check for difference in checksum. | |
id: verify | |
uses: Flurb/verify-file-checksum-action@v2 | |
with: | |
fileUrl: 'https://assets.iec.ch/public/tc57/IEC_61850-6.2009.SCL.2007B.full.zip' | |
checksum: '13dc10768c4ac8d58fcf70491eec3f3d' | |
algorithm: 'md5' | |
- name: Get the verify result | |
run: echo "${{ steps.verify.outputs.verify-result }}" |