diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 46c01e6..1b2ffb5 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -14,7 +14,7 @@ jobs: TAG: ${{ github.ref_name }} GH_TOKEN: ${{ github.token }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build executable run: | swift build \ @@ -46,7 +46,7 @@ jobs: SHA256: ${{ needs.release-build.outputs.sha }} steps: - name: Checkout FelixHerrmann/homebrew-tap - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'FelixHerrmann/homebrew-tap' - name: Update Formula diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index 0399de4..ef7ecd7 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -24,7 +24,7 @@ jobs: name: SwiftLint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: norio-nomura/action-swiftlint@3.2.1 with: args: --strict diff --git a/.github/workflows/xcodebuild.yml b/.github/workflows/xcodebuild.yml index e0ee243..2edf205 100644 --- a/.github/workflows/xcodebuild.yml +++ b/.github/workflows/xcodebuild.yml @@ -37,7 +37,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build Scheme run: | xcodebuild \ @@ -52,7 +52,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install Tuist run: brew install tuist - name: Run tests