diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index e12bad7..6c53e8b 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -14,7 +14,7 @@ jobs: outputs: latest-xcode-version: ${{ steps.extract-xcode-version.outputs.latest_xcode_version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - id: extract-xcode-version run: | latest_xcode_version=$(cat .github/matrix.json | jq -r '.xcode_version | max') @@ -32,7 +32,7 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_${{ needs.xcode-version.outputs.latest-xcode-version }}.app/Contents/Developer steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run Test id: test run: | diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b6f25da..93f1b77 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,7 @@ jobs: podspec: runs-on: macOS-14 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Lint run: pod spec lint - name: Deploy diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index e593d1d..c075c36 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -12,7 +12,7 @@ jobs: image: renovate/renovate:latest options: --user root steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - id: validate run: renovate-config-validator > validation-result.txt - uses: actions/github-script@v7 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1729f0..a407401 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} latest-xcode-version: ${{ steps.set-matrix.outputs.latest-xcode-version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - id: set-matrix run: | echo "matrix=$(cat .github/matrix.json | jq -c .)" >> $GITHUB_OUTPUT @@ -40,7 +40,7 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run Test id: test run: | @@ -88,6 +88,6 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run Test run: swift test