Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit 8ed549b

Browse files
committed
Update dependencies
1 parent d24b072 commit 8ed549b

File tree

6 files changed

+2088
-806
lines changed

6 files changed

+2088
-806
lines changed

.github/workflows/publish-release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ on:
77

88
jobs:
99
npm-package:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
13+
uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
1515
with:
16-
node-version: '16.x'
16+
node-version: '20.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- run: npm ci
1919
- run: npm version ${GITHUB_REF#refs/tags/v} --git-tag-version=false
@@ -24,10 +24,10 @@ jobs:
2424

2525
github-release:
2626
needs: ['npm-package']
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-22.04
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
- name: Publish release
3232
uses: docker://antonyurchenko/git-release:latest
3333
env:

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 shlinkio
3+
Copyright (c) 2022-2023 shlinkio
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ version: '3'
33
services:
44
shlink_css_coding_standard_node:
55
container_name: shlink_css_coding_standard_node
6-
image: node:16.14-alpine
6+
image: node:20.3-alpine
77
volumes:
88
- ./:/home/shlink

indocker

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
docker-compose run shlink_css_coding_standard_node /bin/sh -c "cd /home/shlink && $*"
3+
docker compose run shlink_css_coding_standard_node /bin/sh -c "cd /home/shlink && $*"

0 commit comments

Comments
 (0)