diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index fe0d80f..b1b1ea6 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -15,7 +15,7 @@ jobs: !startsWith(github.event.head_commit.message, 'chore(changelog): update CHANGELOG.md') && github.event.head_commit.author.name != 'github-actions[bot]' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: jdx/mise-action@v4 diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index c1689cf..f059a41 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -7,7 +7,7 @@ jobs: runs-on: macos-26 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: jdx/mise-action@v4 - name: Generate project and run tests diff --git a/{{ cookiecutter.name | lower }}/.github/workflows/ci.yml b/{{ cookiecutter.name | lower }}/.github/workflows/ci.yml index 835d3e0..47ff032 100644 --- a/{{ cookiecutter.name | lower }}/.github/workflows/ci.yml +++ b/{{ cookiecutter.name | lower }}/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: SwiftLint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: GitHub Action for SwiftLint uses: norio-nomura/action-swiftlint@3.2.1 with: @@ -56,7 +56,7 @@ jobs: runsOn: macos-13 name: "macOS 13, Xcode 14.3.1, Swift 5.8.0" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 {%- raw %} - name: ${{ matrix.name }} {%- endraw %} @@ -111,7 +111,7 @@ jobs: xcode: "Xcode_14.3.1" runsOn: macos-13 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 {%- raw %} - name: ${{ matrix.name }} {%- endraw %} @@ -156,7 +156,7 @@ jobs: xcode: "Xcode_14.3.1" runsOn: macos-13 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 {%- raw %} - name: ${{ matrix.name }} {%- endraw %} @@ -215,7 +215,7 @@ jobs: xcode: "Xcode_14.3.1" runsOn: macos-13 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 {%- raw %} - name: ${{ matrix.name }} {%- endraw %} @@ -262,7 +262,7 @@ jobs: xcode: "Xcode_14.3.1" runsOn: macos-13 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 {%- raw %} - name: ${{ matrix.name }} {%- endraw %} @@ -288,7 +288,7 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Discover typos run: | export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.11/bin" diff --git a/{{ cookiecutter.name | lower }}/.github/workflows/danger.yml b/{{ cookiecutter.name | lower }}/.github/workflows/danger.yml index 2d836be..8bb2236 100644 --- a/{{ cookiecutter.name | lower }}/.github/workflows/danger.yml +++ b/{{ cookiecutter.name | lower }}/.github/workflows/danger.yml @@ -22,7 +22,7 @@ jobs: ruby-version: 3.4.7 bundler-cache: true - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup gems run: | gem install bundler diff --git a/{{ cookiecutter.name | lower }}/.github/workflows/deploy_docc.yml b/{{ cookiecutter.name | lower }}/.github/workflows/deploy_docc.yml index 6880892..c16a68a 100644 --- a/{{ cookiecutter.name | lower }}/.github/workflows/deploy_docc.yml +++ b/{{ cookiecutter.name | lower }}/.github/workflows/deploy_docc.yml @@ -24,7 +24,7 @@ jobs: runs-on: macos-12 steps: - name: Checkout 🛎️ - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Fetch all history for all branches and tags. fetch-depth: 0 {% if cookiecutter.docc_custom_branch == "No" -%}