Skip to content

Commit 43bd9d7

Browse files
fix conflicts
2 parents 9f43566 + fed436b commit 43bd9d7

File tree

93 files changed

+4441
-404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+4441
-404
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: checkout repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: setup python 3
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: '3.x'
2323

@@ -33,8 +33,8 @@ jobs:
3333
matrix:
3434
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3535
steps:
36-
- uses: actions/checkout@v4
37-
- uses: actions/setup-python@v5
36+
- uses: actions/checkout@v5
37+
- uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Run tests

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build-mode: none
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@v3

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: 'Checkout repository'
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: 'Dependency Review'
1616
uses: actions/dependency-review-action@v4
1717
with:

.github/workflows/e2e-test-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
# Check out merge commit
5050
- name: Checkout PR
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
ref: ${{ inputs.sha }}
5454
fetch-depth: 0
@@ -80,7 +80,7 @@ jobs:
8080
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8181

8282
- name: Setup Python
83-
uses: actions/setup-python@v5
83+
uses: actions/setup-python@v6
8484
with:
8585
python-version: '3.x'
8686

@@ -115,7 +115,7 @@ jobs:
115115
LINODE_CLI_OBJ_ACCESS_KEY: ${{ secrets.LINODE_CLI_OBJ_ACCESS_KEY }}
116116
LINODE_CLI_OBJ_SECRET_KEY: ${{ secrets.LINODE_CLI_OBJ_SECRET_KEY }}
117117

118-
- uses: actions/github-script@v7
118+
- uses: actions/github-script@v8
119119
id: update-check-run
120120
if: ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }}
121121
env:
@@ -150,7 +150,7 @@ jobs:
150150

151151
steps:
152152
- name: Checkout code
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@v5
154154
with:
155155
fetch-depth: 0
156156
submodules: 'recursive'
@@ -176,7 +176,7 @@ jobs:
176176

177177
steps:
178178
- name: Set up Python
179-
uses: actions/setup-python@v5
179+
uses: actions/setup-python@v6
180180
with:
181181
python-version: '3.x'
182182

.github/workflows/e2e-test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,21 @@ jobs:
5757
steps:
5858
- name: Clone Repository with SHA
5959
if: ${{ inputs.sha != '' }}
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161
with:
6262
fetch-depth: 0
6363
submodules: 'recursive'
6464
ref: ${{ inputs.sha }}
6565

6666
- name: Clone Repository without SHA
6767
if: ${{ inputs.sha == '' }}
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969
with:
7070
fetch-depth: 0
7171
submodules: 'recursive'
7272

7373
- name: Setup Python
74-
uses: actions/setup-python@v5
74+
uses: actions/setup-python@v6
7575
with:
7676
python-version: ${{ inputs.run-eol-python-version == 'true' && env.EOL_PYTHON_VERSION || inputs.python-version || env.DEFAULT_PYTHON_VERSION }}
7777

@@ -111,7 +111,7 @@ jobs:
111111

112112
steps:
113113
- name: Checkout code
114-
uses: actions/checkout@v4
114+
uses: actions/checkout@v5
115115
with:
116116
fetch-depth: 0
117117
submodules: 'recursive'
@@ -141,7 +141,7 @@ jobs:
141141

142142
steps:
143143
- name: Set up Python
144-
uses: actions/setup-python@v5
144+
uses: actions/setup-python@v6
145145
with:
146146
python-version: '3.x'
147147

@@ -178,18 +178,18 @@ jobs:
178178

179179
steps:
180180
- name: Checkout code
181-
uses: actions/checkout@v4
181+
uses: actions/checkout@v5
182182
with:
183183
fetch-depth: 0
184184
submodules: 'recursive'
185185

186186
- name: Download test report
187-
uses: actions/download-artifact@v4
187+
uses: actions/download-artifact@v5
188188
with:
189189
name: test-report-file
190190

191191
- name: Set up Python
192-
uses: actions/setup-python@v5
192+
uses: actions/setup-python@v6
193193
with:
194194
python-version: '3.x'
195195

@@ -232,7 +232,7 @@ jobs:
232232
steps:
233233
- name: Notify Slack
234234
id: main_message
235-
uses: slackapi/slack-github-action@v2.1.0
235+
uses: slackapi/slack-github-action@v2.1.1
236236
with:
237237
method: chat.postMessage
238238
token: ${{ secrets.SLACK_BOT_TOKEN }}
@@ -264,7 +264,7 @@ jobs:
264264
265265
- name: Test summary thread
266266
if: success()
267-
uses: slackapi/slack-github-action@v2.1.0
267+
uses: slackapi/slack-github-action@v2.1.1
268268
with:
269269
method: chat.postMessage
270270
token: ${{ secrets.SLACK_BOT_TOKEN }}

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
-
2020
name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
-
2323
name: Run Labeler
2424
uses: crazy-max/ghaction-github-labeler@24d110aa46a59976b8a7f35518cb7f14f434c916

.github/workflows/nightly-smoke-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
ref: dev
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.x'
3030

@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Notify Slack
4747
if: always() && github.repository == 'linode/linode_api4-python'
48-
uses: slackapi/slack-github-action@v2.1.0
48+
uses: slackapi/slack-github-action@v2.1.1
4949
with:
5050
method: chat.postMessage
5151
token: ${{ secrets.SLACK_BOT_TOKEN }}

.github/workflows/publish-pypi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
environment: pypi-release
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Setup Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: '3.x'
2121

@@ -28,4 +28,4 @@ jobs:
2828
LINODE_SDK_VERSION: ${{ github.event.release.tag_name }}
2929

3030
- name: Publish the release artifacts to PyPI
31-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # pin@release/v1.12.4
31+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # pin@release/v1.13.0

.github/workflows/release-cross-repo-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout linode_api4 repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
submodules: 'recursive'
@@ -25,12 +25,12 @@ jobs:
2525
run: sudo apt-get install -y build-essential
2626

2727
- name: Set up Python
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: '3.10'
3131

3232
- name: Checkout ansible repo
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
repository: linode/ansible_linode
3636
path: .ansible/collections/ansible_collections/linode/cloud

.github/workflows/release-notify-slack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Notify Slack - Main Message
1313
id: main_message
14-
uses: slackapi/slack-github-action@v2.1.0
14+
uses: slackapi/slack-github-action@v2.1.1
1515
with:
1616
method: chat.postMessage
1717
token: ${{ secrets.SLACK_BOT_TOKEN }}

0 commit comments

Comments
 (0)