Skip to content

Commit

Permalink
upgrade workflow action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjn authored Nov 28, 2023
1 parent 0f2000a commit 9304793
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/vvv-provisioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Make Symlinks
- name: Create Vagrant Like Environment
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
MYGID=$(id -g -n)
sudo chown -R $MYUID:$MYGID "$GITHUB_WORKSPACE/log"
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-docker
Expand All @@ -119,12 +119,12 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: stable

- name: Cache Vagrant boxes
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
Expand All @@ -137,7 +137,7 @@ jobs:
- name: vagrant up (stable)
run: vagrant up

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
clean: false

Expand All @@ -147,7 +147,7 @@ jobs:
- name: tests
run: provision/tests/macos-tests.sh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-stable
Expand All @@ -161,12 +161,12 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: develop

- name: Cache Vagrant boxes
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
Expand All @@ -180,7 +180,7 @@ jobs:
- name: vagrant up (develop)
run: vagrant up

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
clean: false

Expand All @@ -190,7 +190,7 @@ jobs:
- name: tests
run: provision/tests/macos-tests.sh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-develop
Expand All @@ -204,10 +204,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache Vagrant boxes
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
Expand All @@ -223,7 +223,7 @@ jobs:
- name: tests
run: provision/tests/macos-tests.sh

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-clean
Expand Down

0 comments on commit 9304793

Please sign in to comment.