diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 730457158..27ad8bcf4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,13 +35,13 @@ jobs: create-nuget: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Get all history to allow automatic versioning using MinVer # Install the .NET SDK indicated in the global.json file - name: ⚙️ Setup dotnet versions - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 8.0.x @@ -90,9 +90,9 @@ jobs: needs: [ create-nuget ] steps: - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: ${{ env.NUGET_PACKAGES_ARTIFACT }} path: ${{ env.NUGET_DIRECTORY }} @@ -117,12 +117,12 @@ jobs: steps: - name: 🛒 Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: ⚙️ Setup dotnet versions - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 8.0.x @@ -151,17 +151,17 @@ jobs: runs-on: ubuntu-latest needs: [ create-nuget ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Get all history to allow automatic versioning using MinVer - name: ⚙️ Setup dotnet - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 9.0.x - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: ${{ env.NUGET_PACKAGES_ARTIFACT }} path: ${{ env.NUGET_DIRECTORY }} @@ -211,12 +211,12 @@ jobs: runs-on: ubuntu-latest steps: - name: 🛒 Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: ⚙️ Setup dotnet versions - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 8.0.x @@ -264,7 +264,7 @@ jobs: if: github.event_name == 'pull_request' && github.repository_owner == 'bunit-dev' steps: - name: 'Checkout Repository' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Dependency Review' uses: actions/dependency-review-action@v4 @@ -273,13 +273,13 @@ jobs: runs-on: ubuntu-latest needs: [ validate-nuget, run-test, validate-template, validate-docs ] steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: ${{ env.NUGET_PACKAGES_ARTIFACT }} path: ${{ env.NUGET_DIRECTORY }} - name: Setup .NET Core - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 - name: 🛠️ Upload library to GitHub Package Repository run: dotnet nuget push ${{ env.NUGET_DIRECTORY }}/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/bunit-dev/index.json --skip-duplicate --no-symbols diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index a1b9954ca..22a8a40f0 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -30,7 +30,7 @@ jobs: steps: - name: 🛒 Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.BUNIT_BOT_TOKEN }} @@ -70,7 +70,7 @@ jobs: RELEASE_NOTES: ${{ steps.changelog_reader.outputs.changes }} - name: ⚙️ Setup dotnet versions - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 8.0.x diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 5b48c8c0f..ce719314d 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -16,7 +16,7 @@ jobs: if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor"]'), github.event.inputs.versionIncrement) steps: - name: 🛒 Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.BUNIT_BOT_TOKEN }} diff --git a/.github/workflows/rebase-v2-on-main.yml b/.github/workflows/rebase-v2-on-main.yml index 2786b4db7..a56738d79 100644 --- a/.github/workflows/rebase-v2-on-main.yml +++ b/.github/workflows/rebase-v2-on-main.yml @@ -17,7 +17,7 @@ jobs: steps: - name: 🛒 Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.BUNIT_BOT_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09a1ac5c9..9b0196f97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: steps: - name: 🛒 Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.BUNIT_BOT_TOKEN }} @@ -55,7 +55,7 @@ jobs: setAllVars: true - name: ⚙️ Setup dotnet versions - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 8.0.x