diff --git a/.github/workflows/check-format.yml b/.github/workflows/check-format.yml index 6aa7cebb7ca..ba8d4bff968 100644 --- a/.github/workflows/check-format.yml +++ b/.github/workflows/check-format.yml @@ -21,10 +21,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.x' @@ -44,7 +44,7 @@ jobs: # Upload patch file if failed - name: Store archive - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: failure() with: name: format-patch @@ -57,7 +57,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Fetch all history and branch (default: 1) # Require all history to get file creation date diff --git a/.github/workflows/check-pr-commit.yml b/.github/workflows/check-pr-commit.yml index 7fa84b1668d..5dc2de1c390 100644 --- a/.github/workflows/check-pr-commit.yml +++ b/.github/workflows/check-pr-commit.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Checkout PR head commit # Checkout Action use merge commit as default diff --git a/.github/workflows/deploy-github-pages.yml b/.github/workflows/deploy-github-pages.yml index d474a275482..5f7a04bd94e 100644 --- a/.github/workflows/deploy-github-pages.yml +++ b/.github/workflows/deploy-github-pages.yml @@ -20,7 +20,7 @@ jobs: steps: - name: 'Checkout' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Generate HTML' uses: mattnotmitt/doxygen-action@v1.9 with: @@ -28,7 +28,7 @@ jobs: - name: 'Tar artifact' run: tar -zcf doxygen.tar.gz -C doxygen/html ./ - name: 'Generate artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: doxygen-html path: doxygen.tar.gz diff --git a/.github/workflows/run-onert-micro-unit-tests.yml b/.github/workflows/run-onert-micro-unit-tests.yml index e8e2dab3e31..3256c758c4d 100644 --- a/.github/workflows/run-onert-micro-unit-tests.yml +++ b/.github/workflows/run-onert-micro-unit-tests.yml @@ -31,7 +31,7 @@ jobs: with: release: '12.2.Rel1' # <-- The compiler release to use - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Checkout PR head commit # Checkout Action use merge commit as default