Skip to content

Commit

Permalink
Bump actions (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
caponetto authored Jan 19, 2023
1 parent ce38432 commit 5c1dfb0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ runs:
git config --global user.email "[email protected]"
- name: "Setup Node"
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 16
cache: "yarn"
cache-dependency-path: ${{ inputs.path }}/yarn.lock

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -44,14 +44,14 @@ jobs:
- name: "Upload build artifact (Ubuntu only)"
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: webapp-build
path: |
dist
- name: "Upload Test artifacts"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-artifacts-${{ matrix.os }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout personal-webapp"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
path: ${{ github.workspace }}/personal-webapp

- name: "Checkout caponetto.github.io"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
path: ${{ github.workspace }}/caponetto.github.io
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
fi
- name: "Checkout personal-webapp"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ steps.resolve_version.outputs.version }}
path: ${{ github.workspace }}/personal-webapp

- name: "Checkout caponetto.github.io"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
path: ${{ github.workspace }}/caponetto.github.io
Expand Down

0 comments on commit 5c1dfb0

Please sign in to comment.