Skip to content

Commit 62e559b

Browse files
authored
update GitHub Actions to Node 24 versions (#974)
1 parent b40e738 commit 62e559b

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
python: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.9']
1515

1616
steps:
17-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
17+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1818
with:
1919
persist-credentials: false
2020

2121
- name: Set up Python 3.13 for emulator
22-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
22+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
2323
with:
2424
python-version: '3.13'
2525
- name: Setup functions emulator environment
@@ -29,7 +29,7 @@ jobs:
2929
pip install -r integration/emulators/functions/requirements.txt
3030
deactivate
3131
- name: Set up Python ${{ matrix.python }}
32-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
32+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
3333
with:
3434
python-version: ${{ matrix.python }}
3535
- name: Install dependencies
@@ -38,12 +38,12 @@ jobs:
3838
pip install -r requirements.txt
3939
- name: Test with pytest
4040
run: pytest
41-
- name: Set up Node.js 20
42-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
41+
- name: Set up Node.js 24
42+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
4343
with:
44-
node-version: 20
44+
node-version: 24
4545
- name: Set up Java 21
46-
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
46+
uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
4747
with:
4848
distribution: 'temurin'
4949
java-version: '21'
@@ -57,11 +57,11 @@ jobs:
5757
lint:
5858
runs-on: ubuntu-latest
5959
steps:
60-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
60+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6161
with:
6262
persist-credentials: false
6363
- name: Set up Python 3.9
64-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
64+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
6565
with:
6666
python-version: 3.9
6767
- name: Install dependencies

.github/workflows/nightly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232

3333
steps:
3434
- name: Checkout source for staging
35-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
35+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3636
with:
3737
ref: ${{ github.event.client_payload.ref || github.ref }}
3838
persist-credentials: false
3939

4040
- name: Set up Python
41-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
41+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
4242
with:
4343
python-version: 3.9
4444

@@ -67,14 +67,14 @@ jobs:
6767
# Attach the packaged artifacts to the workflow output. These can be manually
6868
# downloaded for later inspection if necessary.
6969
- name: Archive artifacts
70-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
70+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7171
with:
7272
name: dist
7373
path: dist
7474

7575
- name: Send email on failure
7676
if: failure()
77-
uses: firebase/firebase-admin-node/.github/actions/send-email@2e2b36a84ba28679bcb7aecdacabfec0bded2d48 # Admin Node SDK v13.6.0
77+
uses: firebase/firebase-admin-node/.github/actions/send-email@7343f166ec71c2efee5fe0554c2fb96203faf2a5 # Admin Node SDK v14.2.0
7878
with:
7979
api-key: ${{ secrets.OSS_BOT_MAILGUN_KEY }}
8080
domain: ${{ secrets.OSS_BOT_MAILGUN_DOMAIN }}
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Send email on cancelled
9191
if: cancelled()
92-
uses: firebase/firebase-admin-node/.github/actions/send-email@2e2b36a84ba28679bcb7aecdacabfec0bded2d48 # Admin Node SDK v13.6.0
92+
uses: firebase/firebase-admin-node/.github/actions/send-email@7343f166ec71c2efee5fe0554c2fb96203faf2a5 # Admin Node SDK v14.2.0
9393
with:
9494
api-key: ${{ secrets.OSS_BOT_MAILGUN_KEY }}
9595
domain: ${{ secrets.OSS_BOT_MAILGUN_DOMAIN }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949

5050
steps:
5151
- name: Checkout source for staging
52-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
52+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
5353
with:
5454
persist-credentials: false
5555

5656
- name: Set up Python
57-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
57+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
5858
with:
5959
python-version: 3.9
6060

@@ -83,7 +83,7 @@ jobs:
8383
# Attach the packaged artifacts to the workflow output. These can be manually
8484
# downloaded for later inspection if necessary.
8585
- name: Archive artifacts
86-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
86+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8787
with:
8888
name: dist
8989
path: dist
@@ -110,14 +110,14 @@ jobs:
110110

111111
steps:
112112
- name: Checkout source for publish
113-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
113+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
114114
with:
115115
# Ignored since the GITHUB_TOKEN needs to be persisted for this workflow.
116116
persist-credentials: true # zizmor: ignore[artipacked]
117117

118118
# Download the artifacts created by the stage_release job.
119119
- name: Download release candidates
120-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
120+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
121121
with:
122122
name: dist
123123
path: dist

0 commit comments

Comments
 (0)