diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e7e9ad..a752de6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Install Node - uses: actions/setup-node@v5.0.0 + uses: actions/setup-node@v6.0.0 with: node-version-file: .nvmrc @@ -41,7 +41,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Build version suffix (main) if: github.event_name == 'push' @@ -65,7 +65,7 @@ jobs: - run: dotnet r pack -- --version-suffix ${{ env.VERSION_SUFFIX }} - name: Upload artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: nupkg path: ./artifacts/*.nupkg @@ -84,7 +84,7 @@ jobs: steps: - name: Download nupkg - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 with: name: nupkg diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index fd8792e..5dbeb52 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Get project version id: project diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 0fe9e7a..0f950a5 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Set up .NET uses: xt0rted/setup-dotnet@v1.5.0 @@ -43,12 +43,12 @@ jobs: nuget_auth_token: ${{ secrets.GITHUB_TOKEN }} - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b247acf..a90a553 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Set up .NET uses: xt0rted/setup-dotnet@v1.5.0 @@ -31,7 +31,7 @@ jobs: - run: dotnet r pack - name: Upload artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: nupkg path: ./artifacts/*.nupkg @@ -52,10 +52,10 @@ jobs: run: echo "current_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT - name: Check out repository - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Download nupkg - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 with: name: nupkg path: ./artifacts