Skip to content

Commit 42040f6

Browse files
authored
Merge pull request #785 from anaik91/feat/bump-action-version
bumped gh action versions
2 parents accce9e + 7b7e9d5 commit 42040f6

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/config/commitlint.config.js renamed to .github/config/commitlint.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
module.exports = {
17+
export default {
1818
extends: ['@commitlint/config-conventional'],
1919
rules: {
2020
'subject-case': [1, 'always', ['lower-case']]
2121
}
22-
}
22+
};

.github/workflows/devrel-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Check out the repo
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v5
3535
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v1
36+
uses: docker/setup-buildx-action@v3
3737
- name: Login to GitHub Container Registry
38-
uses: docker/login-action@v1
38+
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.repository_owner }}
4242
password: ${{ secrets.GHCR_TOKEN }}
4343
- name: Push to GitHub Packages
44-
uses: docker/build-push-action@v2
44+
uses: docker/build-push-action@v6
4545
with:
4646
file: ${{ github.event.inputs.build-file }}
4747
context: ${{ github.event.inputs.build-context }}

.github/workflows/devrel-release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
environment: devrel
2626
steps:
27-
- uses: google-github-actions/release-please-action@v3
27+
- uses: googleapis/release-please-action@v4
2828
with:
2929
token: ${{ secrets.RELEASE_PR_TOKEN }}
3030
release-type: simple

.github/workflows/devrel-site.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout Code
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v5
2727
- name: generate-docs
2828
uses: ./tools/pipeline-linter
2929
with:
3030
pipeline-action: generate-all-docs.sh
3131
- name: Archive Generated Docs
32-
uses: actions/upload-artifact@v2
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: generated-docs
3535
path: generated/
@@ -39,11 +39,11 @@ jobs:
3939
needs: generate-docs
4040
steps:
4141
- name: Checkout Code
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v5
4343
with:
4444
ref: gh-pages
4545
- name: Download Generated Docs
46-
uses: actions/download-artifact@v4.1.7
46+
uses: actions/download-artifact@v5
4747
with:
4848
name: generated-docs
4949
- name: Push GH Pages

.github/workflows/devrel-static-checks.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout Code
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v5
3131
- name: Check File License Headers
3232
uses: ./tools/pipeline-linter
3333
with:
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout Code
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v5
4242
- name: Check README
4343
uses: ./tools/pipeline-linter
4444
with:
@@ -53,9 +53,9 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout Code
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v5
5757
- name: Setup Node
58-
uses: actions/setup-node@v2
58+
uses: actions/setup-node@v4
5959
with:
6060
node-version: "14"
6161
- name: Install Linter dependencies
@@ -80,10 +80,10 @@ jobs:
8080
name: Conventional Commits Lint
8181
runs-on: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@v3
83+
- uses: actions/checkout@v5
8484
with:
8585
fetch-depth: 0
86-
- uses: wagoid/commitlint-github-action@v4
86+
- uses: wagoid/commitlint-github-action@v6
8787
with:
88-
configFile: .github/config/commitlint.config.js
88+
configFile: .github/config/commitlint.config.mjs
8989
failOnWarnings: false

0 commit comments

Comments
 (0)