From 24479825028ca99a9eeaf529b596e75c4cc1fc9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 12:05:54 +0000 Subject: [PATCH] Bump actions/checkout from 2.4.0 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 60 ++++++++++---------- .github/workflows/closemilestones.yaml | 50 ++++++++--------- .github/workflows/releasenotes.yaml | 78 +++++++++++++------------- 3 files changed, 94 insertions(+), 94 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index abc9800..0f3f425 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,30 +1,30 @@ -name: Build - -on: - push: - branches-ignore: - - "dependabot/**" - tags-ignore: - - "*.*" - paths-ignore: - - "*.md" - pull_request: - -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, ubuntu-latest, macos-latest] - - steps: - - uses: actions/checkout@v2.4.0 - with: - fetch-depth: 0 - - name: Build with cake - uses: cake-build/cake-action@v1.4.0 - with: - script-path: setup.cake - target: CI - verbosity: Diagnostic - cake-version: 1.0.0 +name: Build + +on: + push: + branches-ignore: + - "dependabot/**" + tags-ignore: + - "*.*" + paths-ignore: + - "*.md" + pull_request: + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest, ubuntu-latest, macos-latest] + + steps: + - uses: actions/checkout@v3.1.0 + with: + fetch-depth: 0 + - name: Build with cake + uses: cake-build/cake-action@v1.4.0 + with: + script-path: setup.cake + target: CI + verbosity: Diagnostic + cake-version: 1.0.0 diff --git a/.github/workflows/closemilestones.yaml b/.github/workflows/closemilestones.yaml index 44fb7b8..194215a 100644 --- a/.github/workflows/closemilestones.yaml +++ b/.github/workflows/closemilestones.yaml @@ -1,25 +1,25 @@ -name: Close Milestones - -on: - release: - types: [published] - -jobs: - build: - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" - - steps: - - uses: actions/checkout@v2.4.0 - with: - fetch-depth: 0 - - name: Build with cake - uses: cake-build/cake-action@v1.4.0 - with: - script-path: setup.cake - target: Close-Milestones - verbosity: Diagnostic - cake-version: 1.0.0 - cake-bootstrap: true +name: Close Milestones + +on: + release: + types: [published] + +jobs: + build: + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" + + steps: + - uses: actions/checkout@v3.1.0 + with: + fetch-depth: 0 + - name: Build with cake + uses: cake-build/cake-action@v1.4.0 + with: + script-path: setup.cake + target: Close-Milestones + verbosity: Diagnostic + cake-version: 1.0.0 + cake-bootstrap: true diff --git a/.github/workflows/releasenotes.yaml b/.github/workflows/releasenotes.yaml index 74b9247..14ba169 100644 --- a/.github/workflows/releasenotes.yaml +++ b/.github/workflows/releasenotes.yaml @@ -1,39 +1,39 @@ -name: Create Release Notes - -on: - push: - branches: - - master - paths-ignore: - - "*.md" - - ".github/**" - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" - - steps: - - uses: actions/checkout@v2.4.0 - with: - fetch-depth: 0 - - name: Build Release Notes - uses: cake-build/cake-action@v1.4.0 - with: - script-path: setup.cake - target: Build-ReleaseNotes - verbosity: Diagnostic - cake-version: 1.0.0 - cake-bootstrap: true - - name: Commit Changelog - uses: EndBug/add-and-commit@v7 - with: - add: Changelog.md - message: "(docs) Updated changelog" - - name: Push Changelog - uses: ad-m/github-push-action@v0.6.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} +name: Create Release Notes + +on: + push: + branches: + - master + paths-ignore: + - "*.md" + - ".github/**" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" + + steps: + - uses: actions/checkout@v3.1.0 + with: + fetch-depth: 0 + - name: Build Release Notes + uses: cake-build/cake-action@v1.4.0 + with: + script-path: setup.cake + target: Build-ReleaseNotes + verbosity: Diagnostic + cake-version: 1.0.0 + cake-bootstrap: true + - name: Commit Changelog + uses: EndBug/add-and-commit@v7 + with: + add: Changelog.md + message: "(docs) Updated changelog" + - name: Push Changelog + uses: ad-m/github-push-action@v0.6.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}