From cd017561e95a749f9e001e7623529a11e05f9d4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Gajo?= <50725287+64J0@users.noreply.github.com> Date: Mon, 15 Jul 2024 19:46:14 -0300 Subject: [PATCH] update actions (#5) --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 551bc20..4202229 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 5.0.100 + dotnet-version: 5.x - name: Restore run: dotnet restore src/Giraffe.Website/Giraffe.Website.fsproj - name: Build @@ -34,7 +34,7 @@ jobs: steps: # Checkout repo - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Build the Docker image - name: Build Docker image @@ -46,7 +46,7 @@ jobs: # Auth with Docker Hub - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }}