Skip to content

Commit

Permalink
Update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Jun 6, 2024
1 parent d4b246a commit 8f2bd9b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Master CI
on:
push:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-22.04
Expand All @@ -11,12 +10,12 @@ jobs:
run: echo "/home/runner/.local/bin" >> $GITHUB_PATH

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
#TODO: change to 1 and then get all tags seperately to see if that's faster. git fetch origin 'refs/tags/*:refs/tags/*'

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
Expand Down Expand Up @@ -79,7 +78,7 @@ jobs:
run: git push --tags

- name: Release
uses: softprops/action-gh-release@d4e8205d7e959a9107da6396278b2f1f07af0f9b
uses: softprops/action-gh-release@v2
with:
name: ${{ env.NEW_KEE_VERSION }}
tag_name: ${{ env.NEW_KEE_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
#TODO: change to 1 and then get all tags seperately to see if that's faster. git fetch origin 'refs/tags/*:refs/tags/*'

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Publish the new release to Chrome beta users
if: ${{ success() || ( failure() && steps.firefoxsign.conclusion == 'failure' ) }}
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v5.0.0
with:
extension-id: hlicbbodnlbbflfihnjjffnjeaoglici
file-path: "dist/extension-beta.zip"
Expand Down

0 comments on commit 8f2bd9b

Please sign in to comment.