Skip to content

Commit

Permalink
CLDR-14212 Update GitHub actions to @vx vs @vx.y.z (#813)
Browse files Browse the repository at this point in the history
- Background: https://github.community/t/version-numbering-for-actions/16307/4
- Specific issue: actions/setup-java#104 (comment)
actions/setup-java@v1.4.2 was creating warning messages about set-env,
needed to switch to v1.4.3.  Instead, all actions now use @v1 or @v2, which points to a
branch.
  • Loading branch information
srl295 committed Oct 30, 2020
1 parent b86af64 commit 5b3d380
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: clone CLDR
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.end-ref }}
lfs: false # not needed here
path: cldr
fetch-depth: 0 # expensive, but needed for checker
- name: clone ICU for tools
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2
with:
repository: ${{ github.event.inputs.tool-repository }}
ref: ${{ github.event.inputs.tool-ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/checkout@v2
with:
lfs: true
- name: Set up JDK 1.8
uses: actions/setup-java@v1.4.2
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache local Maven repository
uses: actions/cache@v2.1.1
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('tools/**/pom.xml') }}
Expand Down

0 comments on commit 5b3d380

Please sign in to comment.