update warning #2
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
name: Update Dependency | |
on: # Trigger on commits to any branch and manual trigger | |
workflow_dispatch: # Allows manual trigger | |
push: | |
branches: | |
- '**' # Trigger on commits to any branch | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-dependency: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up jq | |
run: sudo apt-get install jq | |
- name: Fetch latest version of dependency | |
id: fetch_version | |
run: | | |
# Fetch the latest version from the FirelyTeam/firely-terminal-pipeline GitHub repository | |
LATEST_VERSION=$(curl -s https://api.github.com/repos/FirelyTeam/firely-terminal-pipeline/releases/latest | jq -r .tag_name) | |
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_ENV | |
- name: Check difference with main.yml, throw a warning within console and github action if the version is not up-to-date | |
run: | | |
CURRENT_VERSION=$(grep -oP '(?<=uses: FirelyTeam/firely-terminal-pipeline@).*$' .github/workflows/main.yml) | |
# If they differ, print the current version in the main.yml file and compare it with the latest version in the repository. | |
if [ "$CURRENT_VERSION" != "$LATEST_VERSION" ]; then | |
echo "::warning::Current version in main.yml: $CURRENT_VERSION" | |
echo "::warning::Latest version in repository: $LATEST_VERSION" | |
else | |
echo "Current version in main.yml is up-to-date" | |
fi | |