Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: Use Node 20 based actions #71

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build_test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build setup-watcom
run: |
./build.sh
mv packed/index.js index.js
- name: Archive artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: action-artifact
if-no-files-found: error
Expand All @@ -35,7 +35,7 @@ jobs:
- "2.0-64"
steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: action-artifact
- name: "Run action"
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: "ubuntu-latest"
if: ${{ (github.repository == 'open-watcom/setup-watcom') && (github.ref_name == 'master') }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure user
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Build setup-watcom
run: |
./build.sh
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Create release
Expand Down