Skip to content

Commit 1b17b1a

Browse files
sd416Sd416
andauthored
Updating remaining checkout actions to v4 (#693)
Co-authored-by: Sd416 <[email protected]>
1 parent 3c97f72 commit 1b17b1a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Build the Docker image
1818
run: docker build . --file Dockerfile --tag linode/cli:$(date +%s) --build-arg="github_token=$GITHUB_TOKEN"
1919
env:

.github/workflows/publish-oci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Clone Repository
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: setup python 3
1515
uses: actions/setup-python@v5

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Update system packages
1414
run: sudo apt-get update -y

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: checkout repo
10-
uses: actions/checkout@v3
10+
uses: actions/checkout@v4
1111

1212
- name: setup python 3
1313
uses: actions/setup-python@v5

.github/workflows/remote-release-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
private_key: ${{ secrets.CLI_RELEASE_PRIVATE_KEY }}
1616

1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
# We want to checkout the main branch
2121
ref: 'main'

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
python-version: [ '3.9','3.10','3.11', '3.12' ]
1212
steps:
1313
- name: Clone Repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Update system packages
1717
run: sudo apt-get update -y
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: windows-latest
4343
steps:
4444
- name: Clone Repository
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
- name: Setup Python
4848
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)