diff --git a/.github/workflows/cd-production.yml b/.github/workflows/cd-production.yml index a1da529..0b6568f 100644 --- a/.github/workflows/cd-production.yml +++ b/.github/workflows/cd-production.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ env.DOTNET_VERSION }} source-url: ${{ env.ARTIFACTS_FEED_URL }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0ea0fd..1419408 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,13 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v45 + uses: tj-actions/changed-files@v47 - name: Check if changelog was touched run: | @@ -38,9 +38,9 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v5 with: dotnet-version: 8.x @@ -49,7 +49,7 @@ jobs: - run: dotnet pack -c Release --no-build --no-restore -o ./artifacts -p:PackageVersion=$(date -d "${GITHUB_RUN_TIMESTAMP}" "+%Y.%-m.%-d")-ci.${{ github.run_attempt }}${{ github.run_id }} - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: "nuget-package" path: ./artifacts/*.nupkg diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 3a283d7..66e4e64 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -38,7 +38,7 @@ jobs: private_key: ${{ secrets.RELEASE_BOT_APP_PRIVATE_KEY }} - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ steps.generate-token.outputs.token }} # we need everything so release-it can compare the current version with the latest tag