diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ccd666..60c2410 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -27,7 +27,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Set up Composer caching - uses: actions/cache@v2 + uses: actions/cache@v4 env: cache-name: cache-composer-dependencies with: @@ -76,7 +76,7 @@ jobs: options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Subversion run: | @@ -88,7 +88,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Set up Composer caching - uses: actions/cache@v2 + uses: actions/cache@v4 env: cache-name: cache-composer-dependencies with: diff --git a/plugins/wporg-5ftf/includes/xprofile.php b/plugins/wporg-5ftf/includes/xprofile.php index 61dff1f..920ac19 100644 --- a/plugins/wporg-5ftf/includes/xprofile.php +++ b/plugins/wporg-5ftf/includes/xprofile.php @@ -321,6 +321,10 @@ function get_association_classes( $team ) { $classes = array( 'badge-code', 'dashicons-editor-code' ); break; + case 'core-ai-team': + $classes = array( 'badge-code-committer', 'dashicons-cloud-upload' ); + break; + case 'mobile-team': $classes = array( 'badge-mobile', 'dashicons-smartphone' ); break; @@ -512,7 +516,7 @@ function get_association_classes( $team ) { case 'core-performance-team': case 'performance-team': // Logo defined as SVG in CSS. - $classes = array( 'badge-performance-team' ); + $classes = array( 'badge-performance-contributor' ); break; case 'core-performance-contributor':