Skip to content

Commit

Permalink
Merge pull request #199 from looker-open-source/tanner-actions-v4
Browse files Browse the repository at this point in the history
Upgrade upload-artifacts to v4
  • Loading branch information
goomrw authored Oct 8, 2024
2 parents c946078 + 7374063 commit 420e819
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Build with Maven
run: mvn -B package --file pom.xml
- run: mkdir staging && cp target/*.jar staging
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Package
path: staging
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,6 @@ public void testStatelessQuery() throws SQLException, IOException {

final BQForwardOnlyResultSet bqResultSet = (BQForwardOnlyResultSet) result;
Assertions.assertThat(bqResultSet.getJobId()).isNull();
Assertions.assertThat(bqResultSet.getQueryId()).contains("!");
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,6 @@ public void testStatelessQuery() throws SQLException, IOException {

final BQScrollableResultSet bqResultSet = (BQScrollableResultSet) result;
Assertions.assertThat(bqResultSet.getJobId()).isNull();
Assertions.assertThat(bqResultSet.getQueryId()).contains("!");
}
}
}
Expand Down

0 comments on commit 420e819

Please sign in to comment.