Skip to content

Commit 2bce223

Browse files
authored
Merge pull request #22 from proxymesh/chore/ci-actions-node24-actionlint
ci: upgrade Actions for Node 24, actionlint hygiene
2 parents 7e03833 + 5fa0627 commit 2bce223

4 files changed

Lines changed: 14 additions & 11 deletions

File tree

.github/workflows/github_release_on_release_branch_merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout merge commit
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
ref: ${{ github.event.pull_request.merge_commit_sha }}
3232

3333
- name: Set up Python
34-
uses: actions/setup-python@v5
34+
uses: actions/setup-python@v6
3535
with:
3636
python-version: "3.12"
3737

.github/workflows/proxy_integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
- uses: actions/checkout@v6
2020
with:
2121
persist-credentials: false
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: "3.x"
2727

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
outputs:
3131
publish: ${{ steps.decide.outputs.publish }}
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
if: github.event_name == 'workflow_run'
3535
with:
3636
ref: main
3737

3838
- id: decide
3939
env:
40-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
GH_TOKEN: ${{ github.token }}
4141
run: |
4242
set -euo pipefail
4343
if [[ "${{ github.event_name }}" != "workflow_run" ]]; then
@@ -64,12 +64,12 @@ jobs:
6464
runs-on: ubuntu-latest
6565

6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v6
6868
with:
6969
ref: ${{ github.event_name == 'workflow_run' && 'main' || github.event_name == 'release' && github.ref || 'main' }}
7070

7171
- name: Set up Python
72-
uses: actions/setup-python@v5
72+
uses: actions/setup-python@v6
7373
with:
7474
python-version: "3.x"
7575

@@ -82,7 +82,7 @@ jobs:
8282
run: python -m build
8383

8484
- name: Store distribution packages
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v7
8686
with:
8787
name: python-package-distributions
8888
path: dist/
@@ -102,7 +102,7 @@ jobs:
102102

103103
steps:
104104
- name: Download distribution packages
105-
uses: actions/download-artifact@v4
105+
uses: actions/download-artifact@v8
106106
with:
107107
name: python-package-distributions
108108
path: dist/
@@ -122,7 +122,7 @@ jobs:
122122

123123
steps:
124124
- name: Download distribution packages
125-
uses: actions/download-artifact@v4
125+
uses: actions/download-artifact@v8
126126
with:
127127
name: python-package-distributions
128128
path: dist/

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ cython_debug/
167167
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168168
#.idea/
169169

170+
# Local actionlint binary (see scripts/download-actionlint.bash or release page)
171+
/actionlint
172+
170173
# PyPI configuration file
171174
.pypirc
172175

0 commit comments

Comments
 (0)