Skip to content

Commit

Permalink
Merge pull request #14 from jkueh/dependabot/github_actions/actions/c…
Browse files Browse the repository at this point in the history
…heckout-4

Bump actions/checkout from 1 to 4
  • Loading branch information
jkueh authored May 5, 2024
2 parents 50201ea + 80bc349 commit 70d594c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: web-ext lint
run: cd src && npx web-ext lint
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Run build script
run: auto/build
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Remove unsupported keys
run: jq '. | del(.browser_specific_settings)' src/manifest.json > manifest.json.new && mv -v manifest.json.new src/manifest.json
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: web-ext build
run: npx web-ext build --source-dir ./src/ --artifacts-dir ./build/ --filename "aws-rolex-firefox.xpi"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: web-ext install
run: npm install --global web-ext
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Run build script
run: auto/build
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Remove unsupported keys
run: jq '. | del(.browser_specific_settings)' src/manifest.json > manifest.json.new && mv -v manifest.json.new src/manifest.json
Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: web-ext build
run: npx web-ext build --source-dir ./src/ --artifacts-dir ./build/ --filename "aws-rolex-firefox.xpi"
Expand Down

0 comments on commit 70d594c

Please sign in to comment.