Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Bump actions/checkout from 3 to 4 #269

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

test:
needs: lint
name: Test code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test docker build
run: |
docker run --rm --privileged \
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and push latest Docker image
if: github.event_name == 'push'
run: |
Expand Down Expand Up @@ -71,12 +71,12 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout add-on code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
path: addon
- name: Checkout repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
repository: filii-lamberti/repository
Expand Down