Skip to content

Commit

Permalink
Use master branch for official GitHub Actions
Browse files Browse the repository at this point in the history
These base actions are maintained by GitHub and should be safe to use
the `master` branch instead of an version tag. This prevents the usage
of outdated actions when the workflow is not updated on a regular basis.

GH-21
  • Loading branch information
arcticicestudio committed Aug 21, 2019
1 parent a2b66b4 commit 99549c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
echo "Git Ref: $GITHUB_REF"
echo "Workflow Actor: $GITHUB_ACTOR"
echo "GitHub Action Runner: $STYLEGUIDE_JAVASCRIPT_GITHUB_ACTION_CONTEXT_RUNNER"
- name:
uses: actions/checkout@v1
- name: Checkout repository
uses: actions/checkout@master
- name: Setup Node.js version 12.x
uses: actions/setup-node@v1
uses: actions/setup-node@master
with:
node-version: 12.x
- name: Install Node modules
Expand All @@ -50,9 +50,9 @@ jobs:
echo "Workflow Actor: $GITHUB_ACTOR"
echo "GitHub Action Runner: $STYLEGUIDE_JAVASCRIPT_GITHUB_ACTION_CONTEXT_RUNNER"
- name: Checkout repository
uses: actions/checkout@v1
uses: actions/checkout@master
- name: "Setup Node.js version ${{ matrix.node-version }}"
uses: actions/setup-node@v1
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: Install Node modules
Expand Down

0 comments on commit 99549c5

Please sign in to comment.