Check SCL XSD 2007B4 version #154
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 2007B4 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 2007B4 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.2018.SCL.2007B4.full.zip' | |
checksum: 'd61da94836ff974fbd781ad1bc967039' | |
algorithm: 'md5' | |
- name: Get the verify result | |
run: echo "${{ steps.verify.outputs.verify-result }}" |