Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 3 to 4 #226

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/container-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
steps:
# Checks-out PeekabooAV-Installer under $GITHUB_WORKSPACE
- name: Checkout PeekabooAV-Installer
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: scVENUS/PeekabooAV-Installer

# put PeekabooAV below that as expected by the installer
- name: Checkout PeekabooAV
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: PeekabooAV

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-container-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
# required for access to the local publish action
- name: Check out PeekabooAV
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: actions

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-container-images-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out PeekabooAV
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# get all history, branches and tags so we can build a list of refs
# to build from
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
steps:
# required for access to the local publish action
- name: Check out PeekabooAV
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: actions

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testsuite-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
branch: ["master", "2.1"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}

Expand All @@ -46,7 +46,7 @@ jobs:
branch: ["2.0"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: "3.6"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
Loading