diff --git a/.github/.dependabot.yml b/.github/dependabot.yml similarity index 51% rename from .github/.dependabot.yml rename to .github/dependabot.yml index b689aae..07eee46 100644 --- a/.github/.dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,7 @@ version: 2 updates: - - package_manager: "npm" + - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" - day: "sunday" - target-branch: "dev" + target-branch: "private-main" diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index 51ff5e3..26ae127 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -14,8 +14,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16 cache: "yarn" diff --git a/.github/workflows/prerelease-sponsor-kali-merge-private.yml b/.github/workflows/prerelease-sponsor-kali-merge-private.yml index be5ac5b..c59771f 100644 --- a/.github/workflows/prerelease-sponsor-kali-merge-private.yml +++ b/.github/workflows/prerelease-sponsor-kali-merge-private.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: "recursive" ref: private-main diff --git a/.github/workflows/release-private-start.yml b/.github/workflows/release-private-start.yml index 9195fcf..f55f268 100644 --- a/.github/workflows/release-private-start.yml +++ b/.github/workflows/release-private-start.yml @@ -20,7 +20,7 @@ jobs: - name: Set target branch run: echo "TARGET_BRANCH=private-main" >> $GITHUB_ENV - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ env.TARGET_BRANCH }} submodules: "recursive" @@ -30,7 +30,7 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Change version number @@ -58,7 +58,7 @@ jobs: - name: Push new branch run: git push origin ${{ env.RELEASE_BRANCH }} - name: Create pull request into ${{ env.TARGET_BRANCH }} - uses: thomaseizinger/create-pull-request@1.0.0 + uses: thomaseizinger/create-pull-request@1.3.1 with: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} head: ${{ env.RELEASE_BRANCH }} diff --git a/.github/workflows/release-private-tag.yml b/.github/workflows/release-private-tag.yml index ae8303c..e1ac04f 100644 --- a/.github/workflows/release-private-tag.yml +++ b/.github/workflows/release-private-tag.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.base_ref }} fetch-depth: 0 @@ -21,7 +21,7 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Set application version as variable diff --git a/.github/workflows/release-public-start.yml b/.github/workflows/release-public-start.yml index c7a30c9..2dfd7b7 100644 --- a/.github/workflows/release-public-start.yml +++ b/.github/workflows/release-public-start.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out sponsor repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "BC-Security/Starkiller-Sponsors" ref: ${{ inputs.sponsorTag }} @@ -29,7 +29,7 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Get app version @@ -44,7 +44,7 @@ jobs: - name: Push new branch run: git push public ${{ env.RELEASE_BRANCH }} - name: Create pull request into main - uses: thomaseizinger/create-pull-request@1.0.0 + uses: thomaseizinger/create-pull-request@1.3.1 with: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} head: ${{ env.RELEASE_BRANCH }} diff --git a/.github/workflows/release-public-tag.yml b/.github/workflows/release-public-tag.yml index 71f1687..645f4af 100644 --- a/.github/workflows/release-public-tag.yml +++ b/.github/workflows/release-public-tag.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Initialize mandatory git config @@ -25,7 +25,7 @@ jobs: tags=$(echo "$tags" | grep -v -E "beta|alpha|rc|RC") latest_tag=$(echo "$tags" | head -n 1) echo "LATEST_TAG=$latest_tag" >> $GITHUB_ENV - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 cache: "yarn" diff --git a/.github/workflows/release-sponsor-kali-start.yml b/.github/workflows/release-sponsor-kali-start.yml index 35a9af2..b53371f 100644 --- a/.github/workflows/release-sponsor-kali-start.yml +++ b/.github/workflows/release-sponsor-kali-start.yml @@ -12,7 +12,7 @@ jobs: run: | echo "TARGET_BRANCH=sponsors-main" >> $GITHUB_ENV - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: sponsors-main fetch-depth: 0 @@ -21,7 +21,7 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Get app version @@ -47,7 +47,7 @@ jobs: - name: Push new branch run: git push origin ${{ env.RELEASE_BRANCH }} - name: Create pull request into ${{ env.TARGET_BRANCH }} - uses: thomaseizinger/create-pull-request@1.0.0 + uses: thomaseizinger/create-pull-request@1.3.1 with: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} head: ${{ env.RELEASE_BRANCH }} diff --git a/.github/workflows/release-sponsor-kali-tag.yml b/.github/workflows/release-sponsor-kali-tag.yml index 2410346..6a08c0a 100644 --- a/.github/workflows/release-sponsor-kali-tag.yml +++ b/.github/workflows/release-sponsor-kali-tag.yml @@ -15,7 +15,7 @@ jobs: run: | echo "TAG_NAME=$(echo ${{ github.head_ref }} | sed 's/release\///')" >> $GITHUB_ENV - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.base_ref }} token: ${{ secrets.RELEASE_TOKEN }} @@ -23,7 +23,7 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 cache: "yarn" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c454f1..b443805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.8.0] - 2024-04-08 + +### Added + +- Added completed, error, continuous statuses to taskings + ## [2.7.3] - 2024-02-22 ### Added @@ -361,7 +367,9 @@ Including but not limited to: - Initial Release -[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.3...HEAD +[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.8.0...HEAD + +[2.8.0]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.3...v2.8.0 [2.7.3]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.2...v2.7.3 diff --git a/package.json b/package.json index eaa5e5d..03c29d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "starkiller", - "version": "2.7.3", + "version": "2.8.0", "private": true, "scripts": { "dev": "vite", diff --git a/src/components/agents/AgentTasksTable.vue b/src/components/agents/AgentTasksTable.vue index e54f7e7..2c0e832 100644 --- a/src/components/agents/AgentTasksTable.vue +++ b/src/components/agents/AgentTasksTable.vue @@ -118,12 +118,21 @@