Skip to content

Commit f0cf01f

Browse files
committed
upgrade GHA reusable actions to node24-compatible versions, as the node20 EOL is soon
1 parent 952ebbd commit f0cf01f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/test-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
elixir: ['1.12.2']
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1515
- uses: erlef/setup-beam@v1
1616
with:
1717
elixir-version: ${{ matrix.elixir }}
1818
otp-version: ${{ matrix.otp }}
1919

2020
- name: Retrieve Mix Dependencies Cache
21-
uses: actions/cache@v1
21+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
2222
id: mix-cache
2323
with:
2424
path: deps
@@ -34,7 +34,7 @@ jobs:
3434
run: MIX_ENV=test mix compile --warnings-as-errors
3535

3636
- name: Retrieve PLT Cache
37-
uses: actions/cache@v1
37+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
3838
id: plt-cache
3939
with:
4040
path: priv/plts

0 commit comments

Comments
 (0)