Skip to content

Commit

Permalink
update from deprecated v2 of actions/upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
jke000 committed Sep 11, 2024
1 parent 03bc95c commit 61db9a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build Comet
run: make
Expand All @@ -31,7 +31,7 @@ jobs:
cp README.md release/README.md
- name: Upload build artificats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: comet-linux
path: release/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build Comet
run: make
Expand All @@ -27,7 +27,7 @@ jobs:
cp README.md release/README.md
- name: Upload build artificats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: comet-macos
path: release/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Unpack Thermo MSFileReader
shell: bash
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
cp README.md release/README.md
- name: Upload build artificats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: comet-windows
path: release/*
Expand Down

0 comments on commit 61db9a0

Please sign in to comment.