Skip to content

Commit

Permalink
Update deprecated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sigio committed Nov 6, 2024
1 parent 7358862 commit c751c6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install jsonlint
run: sudo apt-get install --yes jsonlint
Expand All @@ -48,7 +48,7 @@ jobs:
run: mv _site public

- name: Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14.x'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
Expand All @@ -39,7 +39,7 @@ jobs:
run: mv _site public

- name: Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14.x'

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
run: tar -czf ct_website_${{ env.RELEASE_VERSION }}.tar.gz ./public

- name: Upload release tar
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ct_website_${{ env.RELEASE_VERSION }}
path: ct_website_${{ env.RELEASE_VERSION }}.tar.gz

0 comments on commit c751c6e

Please sign in to comment.