Skip to content

Commit 8147378

Browse files
committed
Upgrade GH Action workflow deps.
1 parent 6ca5564 commit 8147378

8 files changed

Lines changed: 12 additions & 12 deletions

.github/workflows/ci-workflow.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ jobs:
55
build:
66
runs-on: ubuntu-24.04
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
with:
1010
token: ${{ secrets.OAPICF_GITHUB_TOKEN }}
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '22'
13+
node-version: '24'
1414
- uses: iamsauravsharma/create-dotenv@v2.0.1
1515
with:
1616
file-path: '/tmp/.env'
1717
env:
1818
GITHUB_ACTIONS: ${{ env.GITHUB_ACTIONS }}
19-
- uses: cliffano/command-docker-action@v1.3.0
19+
- uses: cliffano/command-docker-action@v1.4.0
2020
with:
2121
command: 'make ci'
22-
image: cliffano/studio:2.11.1
22+
image: cliffano/studio:2.16.0
2323
shell: bash
2424
# based on https://github.com/cliffano/packer-studio/blob/main/provisioners/shell/info-post.sh#L5
2525
# TODO: replace /root with studio-user's home when available

.github/workflows/publish-doc-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
build:
88
runs-on: ubuntu-24.04
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
token: ${{ secrets.OAPICF_GITHUB_TOKEN }}
1313
ref: main
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '22'
16+
node-version: '24'
1717
- run: make deps init-spec doc-latest doc-version
1818
- run: >-
1919
CACHE_DIR=/tmp gh-pages --dist doc/ --user "pakkunbot

.github/workflows/publish-javascript-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-24.04
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
ref: main
1313
- uses: ./.github/actions/publish-javascript-action

.github/workflows/publish-python-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-24.04
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
ref: main
1313
- uses: ./.github/actions/publish-python-action

.github/workflows/publish-ruby-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-24.04
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
ref: main
1313
- uses: ./.github/actions/publish-ruby-action

.github/workflows/release-major-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ubuntu-24.04
77
steps:
8-
- uses: cliffano/release-action@v1.1.0
8+
- uses: cliffano/release-action@v1.2.0
99
with:
1010
release_type: 'major'
1111
github_token: ${{ secrets.OAPICF_GITHUB_TOKEN }}

.github/workflows/release-minor-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ubuntu-24.04
77
steps:
8-
- uses: cliffano/release-action@v1.1.0
8+
- uses: cliffano/release-action@v1.2.0
99
with:
1010
release_type: 'minor'
1111
github_token: ${{ secrets.OAPICF_GITHUB_TOKEN }}

.github/workflows/release-patch-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ubuntu-24.04
77
steps:
8-
- uses: cliffano/release-action@v1.1.0
8+
- uses: cliffano/release-action@v1.2.0
99
with:
1010
release_type: 'patch'
1111
github_token: ${{ secrets.OAPICF_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)