Skip to content

Commit

Permalink
try sudo apt-key
Browse files Browse the repository at this point in the history
  • Loading branch information
John Spellman committed Mar 21, 2023
1 parent d3e6757 commit 78ca0cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
restore-keys: test-phpunit-dependencies-{{ checksum "composer.json" }}

- name: Add PUBKEYs
run: curl -sS https://keyserver.ubuntu.com/debian/pubkey_4EB27DB2A3B88B8B.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/ubuntu.gpg
run: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B

- name: Install Extras
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/test-solr.php
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ function test_facet_blogid_multisite() {
$this->markTestSkipped( 'Multisite-only' );
}
$p_id = $this->__create_test_post( 'post', 'Best Films of 2015' );
$blog2 = $this->factory->blog->create( array( 'domain' => 'example.org', 'path' => '/foo/' ) );
$blog2 = $this->factory->blog->create( array( 'domain' => 'example.org', 'path' => '/', 'collection' => 'foo', ) );
switch_to_blog( $blog2 );
$p_id2 = $this->__create_test_post( 'post', 'Best Films of 2015' );
$args = array(
Expand Down

0 comments on commit 78ca0cf

Please sign in to comment.