diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b2eb2c..2d60ef3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,11 +16,11 @@ jobs: steps: - name: Import Code-Signing Certificates - uses: Apple-Actions/import-codesign-certs@v1 + uses: Apple-Actions/import-codesign-certs@v5 with: p12-file-base64: ${{ secrets.MACOS_CERTIFICATE }} p12-password: ${{ secrets.MACOS_CERTIFICATE_PWD }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Select Xcode version run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2f02830..0613aeb 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -57,7 +57,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Add any setup steps before running the `github/codeql-action/init` action. # This includes steps like installing compilers or runtimes (`actions/setup-node` @@ -67,7 +67,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} @@ -105,6 +105,6 @@ jobs: CURRENT_PROJECT_VERSION="${{ github.run_id }}" - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d92a7d9..60bd9e6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Select Xcode version run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer - name: Set build version @@ -35,12 +35,12 @@ jobs: mkdir -p dist ditto -c -k --sequesterRsrc --keepParent build/Build/Products/Release/ClaudeNein.app "dist/ClaudeNein-${VERSION}-unsigned.zip" - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ClaudeNein-${{ env.VERSION }}-unsigned path: "dist/ClaudeNein-${{ env.VERSION }}-unsigned.zip" - name: Create draft release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: draft: true files: "dist/ClaudeNein-${{ env.VERSION }}-unsigned.zip"