diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index a4a57d1..0ba7889 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -36,11 +36,11 @@ jobs: name: Buildbox tests steps: - name: Checkout ${{ github.sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Setup Ruby using Bundler uses: ruby/setup-ruby@v1 with: @@ -54,7 +54,7 @@ jobs: - name: Export Docker image run: bundle exec rake ood_packaging:buildbox:save[${{ matrix.dist }},${{ matrix.arch }},/tmp/ood_packaging-${{ matrix.dist }}-${{ matrix.arch }}.tar.gz] - name: Upload Docker image - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: image-${{ matrix.dist }}-${{ matrix.arch }} path: /tmp/ood_packaging-${{ matrix.dist }}-${{ matrix.arch }}.tar.gz @@ -123,7 +123,7 @@ jobs: name: Package test package=${{ matrix.package }} dist=${{ matrix.dist }} arch=${{ matrix.arch }} steps: - name: Checkout ${{ github.sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby ${{ matrix.ruby }} using Bundler ${{ matrix.bundler }} uses: ruby/setup-ruby@v1 with: @@ -131,7 +131,7 @@ jobs: bundler: '2.1.4' bundler-cache: true - name: Download image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-${{ matrix.dist }}-${{ matrix.arch }} path: /tmp @@ -194,7 +194,7 @@ jobs: name: Package test package=${{ matrix.package }} dist=${{ matrix.dist }} arch=${{ matrix.arch }} steps: - name: Checkout ${{ github.sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby ${{ matrix.ruby }} using Bundler ${{ matrix.bundler }} uses: ruby/setup-ruby@v1 with: @@ -202,7 +202,7 @@ jobs: bundler: '2.1.4' bundler-cache: true - name: Download image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-${{ matrix.dist }}-${{ matrix.arch }} path: /tmp @@ -280,7 +280,7 @@ jobs: name: Package ${{ matrix.package }} dist=${{ matrix.dist }} arch=${{ matrix.arch }} steps: - name: Checkout ${{ github.sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby using Bundler uses: ruby/setup-ruby@v1 with: @@ -288,7 +288,7 @@ jobs: bundler: '2.1.4' bundler-cache: true - name: Download image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-${{ matrix.dist }}-${{ matrix.arch }} path: /tmp diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0322353..a623cf8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,11 +33,11 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Setup Ruby using Bundler uses: ruby/setup-ruby@v1 with: @@ -62,7 +62,7 @@ jobs: VERSION=${GITHUB_REF#refs/*/v} echo "VERSION=${VERSION}" >> $GITHUB_ENV - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby using Bundler uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 0112921..dad0232 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -17,7 +17,7 @@ jobs: name: Unit tests steps: - name: Checkout ${{ github.sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby ${{ matrix.ruby }} using Bundler ${{ matrix.bundler }} uses: ruby/setup-ruby@v1 with: