From ad6b09f1bb4dbb4aa18d332e97f591eef21dd92d Mon Sep 17 00:00:00 2001 From: Tim Stibbs Date: Mon, 6 May 2024 21:10:57 +0100 Subject: [PATCH] Updating actions versions --- .github/workflows/ci.yml | 6 +++--- .github/workflows/deploy.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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