diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31fa3a7..dbac876 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,19 +14,19 @@ jobs: # checkout a dependent project - name: Checkout cloud-core - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: tstibbs/cloud-core path: 'cloud-core' # will resolve to /home/runner/work/geo-bagging/geo-bagging/cloud-core # checkout 'this' project - name: Checkout geo-bagging - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: 'geo-bagging' # will resolve to /home/runner/work/geo-bagging/geo-bagging/geo-bagging - name: Set up node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 20.x - name: Set up environment diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0a01379..fe62140 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,20 +12,20 @@ jobs: # checkout a dependent project - name: Checkout cloud-core - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: tstibbs/cloud-core path: 'cloud-core' # will resolve to /home/runner/work/geo-bagging/geo-bagging/cloud-core # checkout 'this' project - name: Checkout geo-bagging - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: 'geo-bagging' # will resolve to /home/runner/work/geo-bagging/geo-bagging/geo-bagging fetch-depth: 0 - name: Set up node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 20.x - name: Install node dependencies