Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wargio committed Feb 12, 2024
1 parent 3fb97d1 commit 0304b74
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Checkout submodules
run: |
git submodule init
Expand All @@ -40,10 +40,10 @@ jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
- name: Preparing msvc toolchain
uses: ilammy/msvc-dev-cmd@v1
with:
Expand All @@ -52,7 +52,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install meson ninja PyYAML
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: rizinorg/rizin
path: rizin
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand All @@ -30,7 +30,7 @@ jobs:
git submodule init
git submodule update
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.10.x

Expand All @@ -53,7 +53,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

Expand All @@ -64,4 +64,4 @@ jobs:
make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
4 changes: 2 additions & 2 deletions .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
latest:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.10.x

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/deploy-test-') || startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Checkout submodules
run: |
git submodule init
Expand All @@ -22,7 +22,7 @@ jobs:
mkdir rz-ghidra
mv !(rz-ghidra) rz-ghidra
tar -czvf rz-ghidra-src.tar.gz rz-ghidra
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: rz-ghidra-src.tar.gz
path: rz-ghidra-src.tar.gz
Expand All @@ -35,7 +35,7 @@ jobs:
tarball
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Extract version
id: extract_version
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
Expand All @@ -49,7 +49,7 @@ jobs:
release_name: Release ${{ steps.extract_version.outputs.version }}
draft: true
prerelease: false
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
- name: Display structure of downloaded files
run: ls -R
- name: Upload rz-ghidra src tarball
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1
uses: fsfe/reuse-action@v2

0 comments on commit 0304b74

Please sign in to comment.