Skip to content

Commit

Permalink
Merge branch 'main' into devdeps-oss-attribution-generator
Browse files Browse the repository at this point in the history
  • Loading branch information
legobeat authored May 1, 2023
2 parents 0e1e860 + effdbdb commit 6fea769
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump-version-name.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
types: [opened]
jobs:
bump-version-name:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: "contains(github.head_ref, 'release/')"
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
CLABot:
if: github.event_name == 'pull_request_target' || contains(github.event.comment.html_url, '/pull/')
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
create-release-pr:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
synchronize-with-crowdin:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:

Expand Down
4 changes: 2 additions & 2 deletions app/util/number/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -781,10 +781,10 @@ describe('Number utils :: isZeroValue', () => {
it('returns true for 0', () => {
expect(isZeroValue(0)).toBe(true);
});
it('returns true for 0x0', () => {
it('returns true for hexadecimal string 0x0', () => {
expect(isZeroValue('0x0')).toBe(true);
});
it('returns true for 0x0', () => {
it('returns true for hexadecimal integer literal 0x0', () => {
expect(isZeroValue(0x0)).toBe(true);
});
it('returns true for BN zero value', () => {
Expand Down

0 comments on commit 6fea769

Please sign in to comment.