Skip to content

Commit 36982b6

Browse files
authored
Fix nodejs 16 deprecation warnings by upgrading relevant actions (#122)
1 parent 947d241 commit 36982b6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/debian.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ jobs:
3838
- ghc: '9.10.1'
3939
ghc_minor: '9.10'
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v4
4242
- name: build + smoke test [${{ matrix.ghc }}]
43-
uses: nick-invision/retry@v2
43+
uses: nick-invision/retry@v3.0.0
4444
with:
4545
timeout_minutes: 8
4646
max_attempts: 3
4747
command: |
4848
docker build --pull \
4949
-t haskell:${{ matrix.ghc }}-${{ matrix.deb }} \
5050
${{ matrix.ghc_minor }}/${{ matrix.deb }}
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v4
5252
with:
5353
repository: docker-library/official-images
5454
path: official-images
@@ -82,9 +82,9 @@ jobs:
8282
- arch: aarch64
8383
docker_platform: arm64
8484
steps:
85-
- uses: actions/checkout@v2
85+
- uses: actions/checkout@v4
8686
- name: docker build [ ${{ matrix.arch }} ${{ matrix.ghc }}]
87-
uses: uraimo/run-on-arch-action@e9117b926d001f8683802c315b5a134f8c5da3d3
87+
uses: uraimo/run-on-arch-action@v2.7.2
8888
with:
8989
arch: ${{ matrix.arch }}
9090
distro: ${{ matrix.deb }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
hadolint:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- uses: hadolint/[email protected]
1717
with:
1818
recursive: true

0 commit comments

Comments
 (0)