diff --git a/.github/workflows/build-node-app.yml b/.github/workflows/build-node-app.yml index 53ba5ea0..d73c5872 100644 --- a/.github/workflows/build-node-app.yml +++ b/.github/workflows/build-node-app.yml @@ -11,7 +11,7 @@ jobs: environment: default steps: - name: "Trigger Node Build" - uses: peter-evans/repository-dispatch@latest + uses: peter-evans/repository-dispatch@v4 with: token: ${{ secrets.CI_WEBHOOK_TOKEN }} repository: istresearch/ci-docker diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index ad3175e6..b592aed7 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -10,18 +10,17 @@ jobs: create-release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@latest + - uses: actions/checkout@v3 - name: "Create Version" id: version_cfg run: |- VER_BUILD=$(date +%-H%M) - #VERSION_NUM="$(date +%y).$(date +%m).$(date +%-d)-${VER_BUILD:0:3}" VERSION_NUM="$(date +%y).$(date +%m).$(date +%-d)-${VER_BUILD:0:3}" echo "VERSION_NUM=${VERSION_NUM}" >> $GITHUB_OUTPUT - name: "Tag release" - uses: actions/create-release@latest + uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: