Skip to content

Commit

Permalink
Pin 3rd-party actions to SHA1 (#847)
Browse files Browse the repository at this point in the history
* Pin 3rd-party actions to SHA1 in .github/workflows/release.yaml

* Pin 3rd-party actions to SHA1 in .github/workflows/CI.yaml
  • Loading branch information
fbricon authored Feb 17, 2023
1 parent d3e36a3 commit 9d71bbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: yarn build

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 #v2
with:
# Path to SARIF file relative to the root of the repository
sarif_file: eslint-result.sarif
Expand All @@ -51,13 +51,13 @@ jobs:

# Run tests
- name: Run Test
uses: GabrielBB/[email protected]
uses: GabrielBB/xvfb-action@fe2609f8182a9ed5aee7d53ff3ed04098a904df2 #v1.0
with:
run: yarn coveralls

# Run Coveralls
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@3284643be2c47fb6432518ecec17f1255e8a06a6 #master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# Get the current package.json version so we can tag the image correctly
- name: Get current package.json version
id: package-version
uses: martinbeentjes/npm-get-version-action@master
uses: martinbeentjes/npm-get-version-action@7aa1d82604bb2dbe377a64ca35e692e6fe333c9c #master

# Setup QEMU as requirement for docker
- name: Set up QEMU
Expand Down

0 comments on commit 9d71bbf

Please sign in to comment.