diff --git a/.github/workflows/build-dev.yaml b/.github/workflows/build-dev.yaml index 2a1335901..b14e62a19 100644 --- a/.github/workflows/build-dev.yaml +++ b/.github/workflows/build-dev.yaml @@ -26,27 +26,27 @@ jobs: if [[ -z "$branch_arg" ]]; then branch_arg="$GITHUB_REF_NAME" fi - echo "::set-output name=branch::$branch_arg" - - uses: actions/checkout@v2 + echo "name=branch::$branch_arg" >> $GITHUB_OUTPUT + - uses: actions/checkout@v3 name: checkout with: clean: false ref: "${{ steps.branch.outputs.branch }}" - name: Get date for artifacts id: date - run: echo "::set-output name=date::$(date +'%Y%m%d%H%M')" + run: echo "name=date::$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - name: Get short SHA for artifacts id: sha - run: echo "::set-output name=sha::$(git rev-parse --short HEAD)" + run: echo "name=sha::$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Get dev version id: version run: | set -e echo "full name: ${{ github.event.repository.full_name }}" if [[ "${{ github.event.client_payload.release_tag }}" != "" ]]; then - echo "::set-output name=version::${{ github.event.client_payload.release_tag }}" + echo "name=version::${{ github.event.client_payload.release_tag }}" >> $GITHUB_OUTPUT else - echo "::set-output name=version::${{ steps.date.outputs.date }}-${{ steps.sha.outputs.sha }}" + echo "name=version::${{ steps.date.outputs.date }}-${{ steps.sha.outputs.sha }}" >> $GITHUB_OUTPUT fi - name: Build World run: | diff --git a/.github/workflows/build-main.yaml b/.github/workflows/build-main.yaml index 6de4513e9..3e4664837 100644 --- a/.github/workflows/build-main.yaml +++ b/.github/workflows/build-main.yaml @@ -26,27 +26,27 @@ jobs: if [[ -z "$branch_arg" ]]; then branch_arg="$GITHUB_REF_NAME" fi - echo "::set-output name=branch::$branch_arg" - - uses: actions/checkout@v2 + echo "name=branch::$branch_arg" >> $GITHUB_OUTPUT + - uses: actions/checkout@v3 name: checkout with: clean: false ref: "${{ steps.branch.outputs.branch }}" - name: Get date for artifacts id: date - run: echo "::set-output name=date::$(date +'%Y%m%d')" + run: echo "name=date::$(date +'%Y%m%d')" >> $GITHUB_OUTPUT - name: Get short SHA for artifacts id: sha - run: echo "::set-output name=sha::$(git rev-parse --short HEAD)" + run: echo "name=sha::$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Get version id: version run: | set -e echo "full name: ${{ github.event.repository.full_name }}" if [[ "${{ github.event.client_payload.release_tag }}" != "" ]]; then - echo "::set-output name=version::${{ github.event.client_payload.release_tag }}" + echo "name=version::${{ github.event.client_payload.release_tag }}" >> $GITHUB_OUTPUT else - echo "::set-output name=version::${{ steps.date.outputs.date }}-${{ steps.sha.outputs.sha }}" + echo "name=version::${{ steps.date.outputs.date }}-${{ steps.sha.outputs.sha }}" >> $GITHUB_OUTPUT fi - name: Build World run: | diff --git a/.github/workflows/release-dev.yaml b/.github/workflows/release-dev.yaml index 58f61768d..9cce9f0a9 100644 --- a/.github/workflows/release-dev.yaml +++ b/.github/workflows/release-dev.yaml @@ -19,7 +19,7 @@ jobs: ${{ github.event_name == 'workflow_dispatch' }} || ${{ github.event.label.name == 'build' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: checkout with: clean: false @@ -33,7 +33,7 @@ jobs: - name: repository full name id: full_name run: | - echo "::set-output name=full_name::$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" + echo "name=full_name::$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" >> $GITHUB_OUTPUT - name: changes id: changes @@ -42,21 +42,21 @@ jobs: release_notes="${release_notes//'%'/'%25'}" release_notes="${release_notes//$'\n'/'%0A'}" release_notes="${release_notes//$'\r'/'%0D'}" - echo ::set-output name=release_notes::${release_notes} + echo "name=release_notes::${release_notes}" >> $GITHUB_OUTPUT - name: change_counter id: counter run: | count="$(git log --after "$(date -d "yesterday" +%Y-%m-%d)" --pretty=format:"* %h: %s" | wc -l)" - echo "::set-output name=count::${count}" + echo "name=count::${count}" >> $GITHUB_OUTPUT - name: Get date for artifacts id: date - run: echo "::set-output name=date::$(date +'%Y%m%d%H%M')" + run: echo "name=date::$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - name: Repository Dispatch if: steps.counter.outputs.count != '0' - uses: peter-evans/repository-dispatch@v1 + uses: peter-evans/repository-dispatch@v2 with: token: ${{ secrets.REPO_ACCESS }} repository: ${{ steps.full_name.outputs.full_name }} diff --git a/.github/workflows/release-main.yaml b/.github/workflows/release-main.yaml index f0671a898..afcb6c7fd 100644 --- a/.github/workflows/release-main.yaml +++ b/.github/workflows/release-main.yaml @@ -26,7 +26,7 @@ jobs: launch-main-release-if-needed: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: checkout with: clean: false @@ -40,7 +40,7 @@ jobs: - name: repository full name id: full_name run: | - echo "::set-output name=full_name::$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" + echo "name=full_name::$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" >> $GITHUB_OUTPUT - name: changes id: changes @@ -50,15 +50,15 @@ jobs: release_notes="${release_notes//'%'/'%25'}" release_notes="${release_notes//$'\n'/'%0A'}" release_notes="${release_notes//$'\r'/'%0D'}" - echo "::set-output name=changes::$(echo ${release_notes} | wc -l)" - echo "::set-output name=release_notes::${release_notes}" + echo "name=changes::$(echo ${release_notes} | wc -l)" >> $GITHUB_OUTPUT + echo "name=release_notes::${release_notes}" >> $GITHUB_OUTPUT - name: Get date for artifacts id: date - run: echo "::set-output name=date::$(date +'%Y%m%d')" + run: echo "name=date::$(date +'%Y%m%d')" >> $GITHUB_OUTPUT - name: Repository Dispatch if: steps.changes.outputs.changes != '0' - uses: peter-evans/repository-dispatch@v1 + uses: peter-evans/repository-dispatch@v2 with: token: ${{ secrets.REPO_ACCESS }} repository: ${{ steps.full_name.outputs.full_name }}